about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichal Mazurek <akfaew@jasminek.net>2011-08-10 18:51:45 +0000
committerMichal Mazurek <akfaew@jasminek.net>2011-08-10 18:51:45 +0000
commit67c4e716737f4f224003c623dbccd58334e76f42 (patch)
treeda761e51757ee3071822228e9752e350919d971e
parentbb9726995cab96546c07335364b28efdbe87c98b (diff)
downloadxombrero-67c4e716737f4f224003c623dbccd58334e76f42.tar.gz
< statusbar_modify_attr(t, XT_COLOR_BLACK, "white");
>               statusbar_modify_attr(t, "white", XT_COLOR_BLACK);

first foreground, then background.
-rw-r--r--xxxterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xxxterm.c b/xxxterm.c
index ca18cdd..595e8e4 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -6275,7 +6275,7 @@ notify_load_status_cb(WebKitWebView* wview, GParamSpec* pspec, struct tab *t)
 		/* assume we are a new address */
 		gdk_color_parse("white", &color);
 		gtk_widget_modify_base(t->uri_entry, GTK_STATE_NORMAL, &color);
-		statusbar_modify_attr(t, XT_COLOR_BLACK, "white");
+		statusbar_modify_attr(t, "white", XT_COLOR_BLACK);
 
 		/* take focus if we are visible */
 		focus_webview(t);