Ewmh/Event/Frame: Fix bug with mplayer in fullscreen and FREE layout reported by philpep and remove titlebar limit for title drawing.

This commit is contained in:
Martin Duquesnoy
2009-06-14 03:06:10 +02:00
parent 7957618a26
commit fba8e7b25f
6 changed files with 43 additions and 55 deletions

View File

@@ -65,7 +65,9 @@ freelayout(int screen)
Client *c;
for(c = clients; c; c = c->next)
if(!ishide(c, selscreen) && c->screen == screen_get_sel())
if(!ishide(c, selscreen)
&& c->screen == screen_get_sel()
&& !c->state_fullscreen)
{
client_moveresize(c, c->ogeo, True);
c->tile = c->lmax = False;