move check to more unlikely position in chekc order

SVN revision: 43585
This commit is contained in:
Carsten Haitzler 2009-11-09 15:20:32 +00:00
parent 9af8993332
commit 730661d3da
1 changed files with 1 additions and 1 deletions

View File

@ -153,10 +153,10 @@ evas_object_clip_recalc(Evas_Object *obj)
int cx, cy, cw, ch, cvis, cr, cg, cb, ca;
int nx, ny, nw, nh, nvis, nr, ng, nb, na;
if (obj->layer->evas->events_frozen > 0) return;
if (!obj->cur.cache.clip.dirty &&
!(obj->cur.clipper == NULL || obj->cur.clipper->cur.cache.clip.dirty))
return;
if (obj->layer->evas->events_frozen > 0) return;
evas_object_coords_recalc(obj);
if (obj->cur.map)
{