summaryrefslogtreecommitdiff
path: root/src/dwb.c
diff options
context:
space:
mode:
authorportix <portix@gmx.net>2012-09-30 10:58:49 +0200
committerportix <portix@gmx.net>2012-09-30 10:58:49 +0200
commitc07c1a6a5f76cca0861dad25823e2b61ffd5b941 (patch)
tree2236b6f79ea978e8d86230f1964830517fe3cad1 /src/dwb.c
parent3766f55ac54b228782f82e981416cc06f9b30bb8 (diff)
parent7d0376d67895abcddd7e540c61f458400c91e1a6 (diff)
downloaddwb-c07c1a6a5f76cca0861dad25823e2b61ffd5b941.zip
Automated merge with ssh://bitbucket.org/portix/dwb
Diffstat (limited to 'src/dwb.c')
-rw-r--r--src/dwb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dwb.c b/src/dwb.c
index b8ef725e..1c63cff5 100644
--- a/src/dwb.c
+++ b/src/dwb.c
@@ -47,6 +47,7 @@
#include "domain.h"
#include "application.h"
#include "scripts.h"
+#include "scratchpad.h"
/* DECLARATIONS {{{*/
static DwbStatus dwb_webkit_setting(GList *, WebSettings *);
@@ -3699,11 +3700,11 @@ dwb_init_gui() {
gtk_box_pack_start(GTK_BOX(dwb.gui.status_hbox), dwb.gui.urilabel, true, true, 0);
gtk_box_pack_start(GTK_BOX(dwb.gui.status_hbox), dwb.gui.rstatus, false, false, 0);
gtk_container_add(GTK_CONTAINER(dwb.gui.statusbox), alignment);
+ gtk_box_pack_end(GTK_BOX(dwb.gui.vbox), scratchpad_get(), false, false, 0);
gtk_container_add(GTK_CONTAINER(dwb.gui.window), dwb.gui.vbox);
gtk_widget_show(dwb.gui.mainbox);
-
gtk_widget_show(dwb.gui.vbox);
gtk_widget_show(dwb.gui.window);