cedric pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=c83ec8ed97d0833a4202e73e229799c6bdf248cd
commit c83ec8ed97d0833a4202e73e229799c6bdf248cd Author: Jee-Yong Um <[email protected]> Date: Mon Jan 4 14:09:34 2016 -0800 inwin: remove a meaningless line in sizing_eval Summary: minw and minh are overwritten in the next line at once. This patch removes a meaningless line. Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3450 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/elm_inwin.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/elm_inwin.c b/src/lib/elm_inwin.c index febe1a6..f56cfb7 100644 --- a/src/lib/elm_inwin.c +++ b/src/lib/elm_inwin.c @@ -32,7 +32,6 @@ _elm_inwin_elm_layout_sizing_eval(Eo *obj, void *_pd EINA_UNUSED) if (!content) return; - evas_object_size_hint_min_get(content, &minw, &minh); edje_object_size_min_calc(wd->resize_obj, &minw, &minh); evas_object_size_hint_min_set(obj, minw, minh); --
