apps requesting fullscreen at creation time are treated floating now

This commit is contained in:
Anselm R. Garbe 2006-04-26 16:23:05 +02:00
parent 7564b261eb
commit 7863f248d1
1 changed files with 2 additions and 1 deletions

View File

@ -232,7 +232,8 @@ attach_to_view(View *v, Client *c)
if(is_of_view(v, c))
return;
if(c->trans || c->floating)
if(c->trans || c->floating
|| (c->rect.width == rect.width && c->rect.height == rect.height))
a = v->area.data[0];
else
a = v->area.data[v->sel];