throw an ACK when trying to set comp frame geometry if frame exists

This commit is contained in:
Mike Blumenkrantz 2015-10-05 15:55:44 -04:00
parent e27a0cbeba
commit 85cf1305be
1 changed files with 2 additions and 0 deletions

View File

@ -2929,6 +2929,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->frame_object)
CRI("ACK!");
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;