fix frame size calc check to account for themes with 0 height

This commit is contained in:
Mike Blumenkrantz 2014-04-02 12:31:33 -04:00
parent 3f2efbc548
commit b9e6a624ef
1 changed files with 1 additions and 1 deletions

View File

@ -1261,7 +1261,7 @@ _e_comp_intercept_show_helper(E_Comp_Object *cw)
return;
}
evas_object_move(cw->smart_obj, cw->ec->x, cw->ec->y);
if (cw->frame_object && (cw->ec->h == cw->ec->client.h))
if (cw->frame_object && (cw->ec->h == cw->ec->client.h) && (cw->ec->w == cw->ec->client.w))
CRI("ACK!");
evas_object_resize(cw->smart_obj, cw->ec->w, cw->ec->h);
if ((cw->w < 1) || (cw->h < 1))