aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.c')
-rw-r--r--src/commands.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/commands.c b/src/commands.c
index c4f63af..1af351c 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -106,13 +106,9 @@ void
toggle_status (WebKitWebView* page, GArray *argv, GString *result) {
(void)page; (void)argv; (void)result;
- if (uzbl.behave.show_status) {
- gtk_widget_hide(uzbl.gui.mainbar);
- } else {
- gtk_widget_show(uzbl.gui.mainbar);
- }
uzbl.behave.show_status = !uzbl.behave.show_status;
- update_title();
+
+ cmd_set_status();
}
/*