applied anydots proposal to let togglefloating restore fixed windows caa7ab53
Anselm R. Garbe · 2007-05-25 15:28 1 file(s) · +2 −0
client.c +2 −0
305 305
	if(!sel || lt->arrange == floating)
306 306
		return;
307 307
	sel->isfloating = !sel->isfloating;
308 +
	if(sel->isfloating && sel->isfixed)
309 +
		resize(sel, sel->x, sel->y, sel->minw, sel->minh, True);
308 310
	lt->arrange();
309 311
}
310 312