Evas: Framespace width & height Could be zero (it is possible), so
authorChristopher Michael <cpmichael1@comcast.net>
Tue, 3 Jan 2012 01:01:58 +0000 (01:01 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Tue, 3 Jan 2012 01:01:58 +0000 (01:01 +0000)
remove checks.

SVN revision: 66762

legacy/evas/src/lib/canvas/evas_main.c

index 7b305a8..687744f 100644 (file)
@@ -421,8 +421,6 @@ evas_output_framespace_set(Evas *e, Evas_Coord x, Evas_Coord y, Evas_Coord w, Ev
 
    if ((x == e->framespace.x) && (y == e->framespace.y) &&
        (w == e->framespace.w) && (h == e->framespace.h)) return;
-   if (w <= 0) return;
-   if (h <= 0) return;
    e->framespace.x = x;
    e->framespace.y = y;
    e->framespace.w = w;