diff options
| author | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 02:08:36 -0500 |
|---|---|---|
| committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 02:08:36 -0500 |
| commit | 92105e7862822f5c884367c4cb62c0464ee8e636 (patch) | |
| tree | 507d3e3435ae65cac55ad25de9dd2f15cc181cc6 /layout.c | |
| parent | fixing missing extern declars in dwm.h for {de,at}tach() (diff) | |
| download | dwm-92105e7862822f5c884367c4cb62c0464ee8e636.tar.gz dwm-92105e7862822f5c884367c4cb62c0464ee8e636.tar.bz2 dwm-92105e7862822f5c884367c4cb62c0464ee8e636.zip | |
fixed exit condition in togglemax()
Diffstat (limited to '')
| -rw-r--r-- | layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -195,7 +195,7 @@ void togglemax(Arg arg) { XEvent ev; - if(!sel || !sel->isversatile || sel->isfixed || lt->arrange != versatile) + if(!sel || (lt->arrange != versatile && !sel->isversatile) || sel->isfixed) return; if((sel->ismax = !sel->ismax)) { sel->rx = sel->x; |
