aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-07-11 16:01:58 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-07-11 16:01:58 +0200
commit8fe37c5e4751c120cbe908128bd1a457b00ba763 (patch)
tree6a43af17d96b8356c3a68b2d2a428d9315b61bde
parent9228b7286de8947a7217fdd9aae16da766165101 (diff)
2 small doc fixes
-rw-r--r--README5
-rw-r--r--uzbl.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/README b/README
index e738a7e..6eaac42 100644
--- a/README
+++ b/README
@@ -303,10 +303,15 @@ Custom, userdefined scripts (`spawn foo bar`) get first the arguments as specifi
-v, --verbose Whether to print all messages or just errors.
-n, --name=NAME Name of the current instance (defaults to Xorg window id)
-c, --config=FILE Config file (or `-` to use stdin)
+ -s, --socket=SOCKET Socket ID
+ -V, --version Print the version and exit
--display=DISPLAY X display to use
--help Help
+
+
+
### BUGS
known bugs:
diff --git a/uzbl.c b/uzbl.c
index a5d78f5..9e5c1a9 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)