discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=b9e6a624eff68bd506db98fb03c53fecb2f59835

commit b9e6a624eff68bd506db98fb03c53fecb2f59835
Author: Mike Blumenkrantz <zm...@samsung.com>
Date:   Wed Apr 2 12:31:33 2014 -0400

    fix frame size calc check to account for themes with 0 height
---
 src/bin/e_comp_object.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c
index 1b82b9a..d4195ae 100644
--- a/src/bin/e_comp_object.c
+++ b/src/bin/e_comp_object.c
@@ -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))

-- 


Reply via email to