aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar Tom Adams <tom@holizz.com>2009-07-12 21:50:28 +0100
committerGravatar Tom Adams <tom@holizz.com>2009-07-12 21:50:28 +0100
commit5775e680694b9aebaa09a5a0ea104cb3ed0c3614 (patch)
treea372023d66080dc1a54680f8c76f871558bb0667 /uzbl.c
parentc004e5bc10cbd259fd0db58230520f2484755c38 (diff)
parente57f902c3b4d0bb52485b33befdc1759baa6f8f5 (diff)
Merge commit 'Dieterbe/experimental' into new_experimental
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uzbl.c b/uzbl.c
index a5d78f5..193d0ba 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -2141,7 +2141,7 @@ update_title (void) {
if (b->status_background) {
GdkColor color;
gdk_color_parse (b->status_background, &color);
- //labels and hboxes do not draw their own background. applying this on the vbox is ok as the statusbar is the only affected widget. (if not, we could also use GtkEventBox)
+ //labels and hboxes do not draw their own background. applying this on the vbox/main_window is ok as the statusbar is the only affected widget. (if not, we could also use GtkEventBox)
if (uzbl.gui.main_window)
gtk_widget_modify_bg (uzbl.gui.main_window, GTK_STATE_NORMAL, &color);
else if (uzbl.gui.plug)
@@ -2716,7 +2716,7 @@ main (int argc, char* argv[]) {
uzbl.state.selected_url = NULL;
uzbl.state.searchtx = NULL;
- GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
+ GOptionContext* context = g_option_context_new ("[ uri ] - load a uri by default");
g_option_context_add_main_entries (context, entries, NULL);
g_option_context_add_group (context, gtk_get_option_group (TRUE));
g_option_context_parse (context, &argc, &argv, NULL);