Don't collapse dock/menu/toolbar windows in float+stack mode.

This commit is contained in:
Kris Maglione 2011-09-15 13:35:37 -04:00
parent ff821dd113
commit 57dbe8eb38
1 changed files with 2 additions and 1 deletions

View File

@ -74,7 +74,8 @@ float_arrange(Area *a) {
break; break;
case Colstack: case Colstack:
for(f=a->frame; f; f=f->anext) 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; break;
default: default:
die("not reached"); die("not reached");