elementary/label - removed unnecessary call

SVN revision: 82265
This commit is contained in:
ChunEon Park 2013-01-05 05:50:13 +00:00
parent 5ab4c3ce0b
commit e1c165366a
1 changed files with 1 additions and 4 deletions

View File

@ -195,10 +195,7 @@ _elm_label_smart_sizing_eval(Eo *obj, void *_pd EINA_UNUSED, va_list *list EINA_
else
{
evas_event_freeze(evas_object_evas_get(obj));
evas_object_geometry_get
(wd->resize_obj, NULL, NULL, &resw, &resh);
edje_object_size_min_calc
(wd->resize_obj, &minw, &minh);
edje_object_size_min_calc(wd->resize_obj, &minw, &minh);
if (sd->wrap_w > 0 && minw > sd->wrap_w) minw = sd->wrap_w;
evas_object_size_hint_min_set(obj, minw, minh);
evas_event_thaw(evas_object_evas_get(obj));