mirror of https://github.com/0intro/wmii
Don't collapse dock/menu/toolbar windows in float+stack mode.
This commit is contained in:
parent
ff821dd113
commit
57dbe8eb38
|
@ -74,7 +74,8 @@ float_arrange(Area *a) {
|
|||
break;
|
||||
case Colstack:
|
||||
for(f=a->frame; f; f=f->anext)
|
||||
f->collapsed = (f != a->sel);
|
||||
f->collapsed = !(f->client->w.ewmh.type & (TypeDock|TypeMenu|TypeToolbar))
|
||||
&& (f != a->sel);
|
||||
break;
|
||||
default:
|
||||
die("not reached");
|
||||
|
|
Loading…
Reference in New Issue