diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-05-15 14:06:18 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-05-15 14:06:18 +0200 |
commit | 1e826ddd3ee0159bf2bd296a24e557b0d971ed91 (patch) | |
tree | e30efceaf9593696e6b8b071f4cd3d21dc674af4 /layout.c | |
parent | a967d7f66447b1b3023cdb4b5a10fca2cfb23b05 (diff) | |
download | dwm-1e826ddd3ee0159bf2bd296a24e557b0d971ed91.tar.gz |
simplification
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/layout.c b/layout.c index 5bb6e97..bc5ca1c 100644 --- a/layout.c +++ b/layout.c @@ -218,10 +218,8 @@ setlayout(const char *arg) { void togglebar(const char *arg) { - if(bpos == BarOff) { - if((bpos = BARPOS) == BarOff) - bpos = BarTop; - } + if(bpos == BarOff) + bpos = (BARPOS == BarOff) ? BarTop : BARPOS; else bpos = BarOff; updatebarpos(); |