formatting again with updated cfg

SVN revision: 57911
This commit is contained in:
Mike Blumenkrantz 2011-03-20 06:51:13 +00:00
parent 1bfdf90aab
commit 555c466ddc
1 changed files with 14 additions and 14 deletions

View File

@ -64,7 +64,7 @@ struct _E_Comp_Win
int x, y, w, h; // geometry int x, y, w, h; // geometry
struct struct
{ {
int x, y, w, h; // hidden geometry (used when its unmapped and re-instated on map) int x, y, w, h; // hidden geometry (used when its unmapped and re-instated on map)
} hidden; } hidden;
int pw, ph; // pixmap w/h int pw, ph; // pixmap w/h
int border; // border width int border; // border width
@ -179,19 +179,19 @@ _e_mod_comp_fullscreen_check(E_Comp *c)
if (!c->wins) return NULL; if (!c->wins) return NULL;
EINA_INLIST_REVERSE_FOREACH(c->wins, cw) EINA_INLIST_REVERSE_FOREACH(c->wins, cw)
{ {
if ((!cw->visible) || (cw->input_only) || (cw->invalid)) if ((!cw->visible) || (cw->input_only) || (cw->invalid))
continue; continue;
if ((cw->x == 0) && (cw->y == 0) && if ((cw->x == 0) && (cw->y == 0) &&
((cw->x + cw->w) >= c->man->w) && ((cw->x + cw->w) >= c->man->w) &&
((cw->y + cw->h) >= c->man->h) && ((cw->y + cw->h) >= c->man->h) &&
(!cw->argb) && (!cw->shaped) (!cw->argb) && (!cw->shaped)
) )
{ {
return cw; return cw;
} }
return NULL; return NULL;
} }
return NULL; return NULL;
} }