From 41aa3e282c62c799e2d754b5979978ac4a6a09b4 Mon Sep 17 00:00:00 2001 From: Jaehwan Kim Date: Tue, 20 Sep 2011 14:15:05 +0900 Subject: [PATCH] [*][button] change _sizing_eval for scale --- src/lib/elm_button.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib/elm_button.c b/src/lib/elm_button.c index 33ed125..21aed4a 100644 --- a/src/lib/elm_button.c +++ b/src/lib/elm_button.c @@ -214,16 +214,12 @@ _sizing_eval(Evas_Object *obj) { Widget_Data *wd = elm_widget_data_get(obj); Evas_Coord minw = -1, minh = -1; - Evas_Coord w, h; if (!wd) return; if (wd->delete_me) return; elm_coords_finger_size_adjust(1, &minw, 1, &minh); edje_object_size_min_restricted_calc(wd->btn, &minw, &minh, minw, minh); elm_coords_finger_size_adjust(1, &minw, 1, &minh); - evas_object_size_hint_min_get(obj, &w, &h); - if (h > minh) minh = h; - evas_object_size_hint_min_set(obj, minw, minh); } -- 2.7.4