diff options
author | portix <portix@gmx.net> | 2012-01-02 22:53:55 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2012-01-02 22:53:55 +0100 |
commit | 76e05f75e5ea35184164c18e8d8ef53a81705343 (patch) | |
tree | dd400006556c682c32159a6db9d7ad2810e3c50e /src/commands.c | |
parent | 751ded10e9c83c8b354e841a486e01fa71608f58 (diff) | |
download | dwb-76e05f75e5ea35184164c18e8d8ef53a81705343.zip |
Set bar visibility with 'widget-packing'
--HG--
branch : experimental
Diffstat (limited to 'src/commands.c')
-rw-r--r-- | src/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.c b/src/commands.c index 3bd30ed8..4e99a529 100644 --- a/src/commands.c +++ b/src/commands.c @@ -743,7 +743,7 @@ DwbStatus commands_toggle_bars(KeyMap *km, Arg *arg) { dwb.state.bar_visible ^= arg->n; gtk_widget_set_visible(dwb.gui.topbox, dwb.state.bar_visible & BAR_VIS_TOP); - gtk_widget_set_visible(dwb.gui.statusbox, dwb.state.bar_visible & BAR_VIS_STATUS); + gtk_widget_set_visible(dwb.gui.bottombox, dwb.state.bar_visible & BAR_VIS_STATUS); return STATUS_OK; }/*}}}*/ DwbStatus |