Browse Source

fixed exit condition in togglemax()

master
Anselm R. Garbe 18 years ago
parent
commit
92105e7862
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      layout.c

+ 1
- 1
layout.c View File

@ -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;


Loading…
Cancel
Save