From fb153fc57a03b1e0235ee73cc179080994542559 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 4 Aug 2017 16:17:53 -0400 Subject: [PATCH] efl-wl: no-op the re-setting of minmax/aspect handling --- src/lib/efl_wl/efl_wl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/efl_wl/efl_wl.c b/src/lib/efl_wl/efl_wl.c index a5004f0..9a02d0a 100644 --- a/src/lib/efl_wl/efl_wl.c +++ b/src/lib/efl_wl/efl_wl.c @@ -5397,6 +5397,7 @@ efl_wl_aspect_set(Evas_Object *obj, Eina_Bool set) if (!eina_streq(evas_object_type_get(obj), "comp")) abort(); c = evas_object_smart_data_get(obj); + if (c->aspect == (!!set)) return; c->aspect = !!set; if (c->aspect) shell_surface_aspect_update(c->active_surface); @@ -5411,6 +5412,7 @@ efl_wl_minmax_set(Evas_Object *obj, Eina_Bool set) if (!eina_streq(evas_object_type_get(obj), "comp")) abort(); c = evas_object_smart_data_get(obj); + if (c->minmax == (!!set)) return; c->minmax = !!set; if (c->minmax) shell_surface_minmax_update(c->active_surface); -- 2.7.4