discomfitor pushed a commit to branch enlightenment-0.19.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=46b1335adebc12930872e9abfc974d819a074793

commit 46b1335adebc12930872e9abfc974d819a074793
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Mon Sep 28 14:01:02 2015 -0400

    reject identical calls to e_comp_object_frame_geometry_set()
---
 src/bin/e_comp_object.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c
index 9212c60..b88dfb4 100644
--- a/src/bin/e_comp_object.c
+++ b/src/bin/e_comp_object.c
@@ -2790,6 +2790,8 @@ E_API void
 e_comp_object_frame_geometry_set(Evas_Object *obj, int l, int r, int t, int b)
 {
    API_ENTRY;
+   if ((cw->client_inset.l == l) && (cw->client_inset.r == r) &&
+       (cw->client_inset.t == t) && (cw->client_inset.b == b)) return;
    cw->client_inset.l = l;
    cw->client_inset.r = r;
    cw->client_inset.t = t;

-- 


Reply via email to