diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-05-15 13:36:04 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-05-15 13:36:04 +0200 |
commit | 37e062b0ed475fb6d9030f05b353c4fb79b7c6e5 (patch) | |
tree | 0a767ea06c0563dcb1d2b0386c61851d3d663d11 /layout.c | |
parent | cf58091736de194fabfd25420bbd1999b4ad3360 (diff) | |
download | dwm-37e062b0ed475fb6d9030f05b353c4fb79b7c6e5.tar.gz |
another fix, call lt->arrange() in togglebar only
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/layout.c b/layout.c index 0dc062f..26e9de6 100644 --- a/layout.c +++ b/layout.c @@ -220,6 +220,7 @@ void togglebar(const char *arg) { bpos = (bpos == BarOff) ? BARPOS : BarOff; updatebarpos(); + lt->arrange(); } void |