diff options
author | Michal Mazurek <akfaew@jasminek.net> | 2011-08-10 18:51:45 +0000 |
---|---|---|
committer | Michal Mazurek <akfaew@jasminek.net> | 2011-08-10 18:51:45 +0000 |
commit | 67c4e716737f4f224003c623dbccd58334e76f42 (patch) | |
tree | da761e51757ee3071822228e9752e350919d971e | |
parent | bb9726995cab96546c07335364b28efdbe87c98b (diff) | |
download | xombrero-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.c | 2 |
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); |