From: raster Date: Fri, 19 Dec 2008 13:11:21 +0000 (+0000) Subject: dont resize/move fullscreen canvases X-Git-Tag: build/2012-07-04.173327~2785 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0541b3e27a70f2d715371a92d59ee597e2ff21b;p=profile%2Fivi%2Fecore.git dont resize/move fullscreen canvases git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@38224 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c index 3e92c1d..8aa28b4 100644 --- a/src/lib/ecore_evas/ecore_evas.c +++ b/src/lib/ecore_evas/ecore_evas.c @@ -1095,6 +1095,7 @@ ecore_evas_move(Ecore_Evas *ee, int x, int y) "ecore_evas_move"); return; } + if (ee->prop.fullscreen) return; IFC(ee, fn_move) (ee, x, y); IFE; } @@ -1137,6 +1138,7 @@ ecore_evas_resize(Ecore_Evas *ee, int w, int h) "ecore_evas_resize"); return; } + if (ee->prop.fullscreen) return; if (w < 1) w = 1; if (h < 1) h = 1; if ((ee->rotation == 90) || (ee->rotation == 270)) @@ -1172,6 +1174,7 @@ ecore_evas_move_resize(Ecore_Evas *ee, int x, int y, int w, int h) "ecore_evas_move_resize"); return; } + if (ee->prop.fullscreen) return; if (w < 1) w = 1; if (h < 1) h = 1; if ((ee->rotation == 90) || (ee->rotation == 270))