Browse Source

applied anydots proposal to let togglefloating restore fixed windows

custom-dwm
Anselm R. Garbe 19 years ago
parent
commit
caa7ab5362
  1. 2
      client.c

2
client.c

@ -305,6 +305,8 @@ togglefloating(const char *arg) {
if(!sel || lt->arrange == floating)
return;
sel->isfloating = !sel->isfloating;
if(sel->isfloating && sel->isfixed)
resize(sel, sel->x, sel->y, sel->minw, sel->minh, True);
lt->arrange();
}

Loading…
Cancel
Save