elm_notify: null out allow events when its deleted

otherwise later dismisscalls to that object will lead to spammy error
messages in the console
This commit is contained in:
Marcel Hollerbach 2017-02-04 23:41:55 +01:00
parent cece2b53d7
commit 29cb2217b8
1 changed files with 4 additions and 1 deletions

View File

@ -688,7 +688,10 @@ _elm_notify_allow_events_set(Eo *obj, Elm_Notify_Data *sd, Eina_Bool allow)
_block_area_clicked_cb, obj);
}
else
evas_object_del(sd->block_events);
{
evas_object_del(sd->block_events);
sd->block_events = NULL;
}
}
EOLIAN static Eina_Bool