From 564d78ce93343bb17a29640be877be32ed1b5c81 Mon Sep 17 00:00:00 2001 From: godfath3r Date: Wed, 15 Oct 2014 20:41:43 +0200 Subject: [PATCH] miniview.c: Remove _do_configure() call from smart_show Summary: Strangelly enough, _do_configure() call from smart_show() is not necessary. So, let's clean that up. Test Plan: Miniview works and resizes as expected without that function call. Reviewers: billiob Differential Revision: https://phab.enlightenment.org/D1539 --- src/bin/miniview.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bin/miniview.c b/src/bin/miniview.c index e3ea3313..f47fb383 100644 --- a/src/bin/miniview.c +++ b/src/bin/miniview.c @@ -448,7 +448,6 @@ _smart_show(Evas_Object *obj) mv->img_hist = 0; mv->initial_pos = 1; - _do_configure(obj); _queue_render(mv); evas_object_show(mv->base); }