diff options
author | portix <portix@gmx.net> | 2012-09-30 10:58:49 +0200 |
---|---|---|
committer | portix <portix@gmx.net> | 2012-09-30 10:58:49 +0200 |
commit | c07c1a6a5f76cca0861dad25823e2b61ffd5b941 (patch) | |
tree | 2236b6f79ea978e8d86230f1964830517fe3cad1 /src/dwb.c | |
parent | 3766f55ac54b228782f82e981416cc06f9b30bb8 (diff) | |
parent | 7d0376d67895abcddd7e540c61f458400c91e1a6 (diff) | |
download | dwb-c07c1a6a5f76cca0861dad25823e2b61ffd5b941.zip |
Automated merge with ssh://bitbucket.org/portix/dwb
Diffstat (limited to 'src/dwb.c')
-rw-r--r-- | src/dwb.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |