aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-07-03 20:40:48 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-07-03 20:40:48 +0200
commit4ae8a979a0a430f29a2cf2bc5d51e115d8e1bd41 (patch)
treecd84d74cb85a8c46656524894520025d68c592b6 /uzbl.c
parentdd78febd4d7f063bf42e5c80d852540a61ab1adf (diff)
merge much better uzbl_tabbed.py + fix for cookies.py
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 69b1b9e..ed9c4be 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -2120,11 +2120,11 @@ 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 window/vbox 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)
- gtk_widget_modify_bg (uzbl.gui.plug, GTK_STATE_NORMAL, &color);
+ gtk_widget_modify_bg ((GtkWidget * ) uzbl.gui.plug, GTK_STATE_NORMAL, &color);
}
} else {
if (b->title_format_long) {