From 8ff6c4fa9975d0856fac83e47df8c0c45f042b07 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Fri, 2 May 2014 00:01:39 +1000 Subject: Clean up the resize function. --- src/GuiLua/GuiLua.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/GuiLua') diff --git a/src/GuiLua/GuiLua.c b/src/GuiLua/GuiLua.c index 7560a77..2877fc4 100644 --- a/src/GuiLua/GuiLua.c +++ b/src/GuiLua/GuiLua.c @@ -501,13 +501,8 @@ static void _on_canvas_resize(Ecore_Evas *ee) int w, h; ecore_evas_geometry_get(ee, NULL, NULL, &w, &h); - -printf("RESIZED!!!\n"); - eo_do(ourGlobals.background, evas_obj_size_set(w, h)); - eo_do(ourGlobals.image, - evas_obj_size_set(w, h) -// evas_obj_position_set(0, 0) - ); + eo_do(ourGlobals.background, evas_obj_size_set(w, h)); + eo_do(ourGlobals.image, evas_obj_size_set(w, h)); } static void _on_click(void *data, Evas_Object *obj, void *event_info EINA_UNUSED) -- cgit v1.1