elm_panel: Wrap calls to edje_object_part_object_get with freeze/thaw

Summary:
@ref T6884

Depends on D6406

Reviewers: zmike, ManMower

Reviewed By: zmike

Subscribers: cedric, #committers

Tags: #efl

Maniphest Tasks: T6884

Differential Revision: https://phab.enlightenment.org/D6407
This commit is contained in:
Chris Michael 2018-06-25 11:29:21 -04:00 committed by Mike Blumenkrantz
parent 8ade8932ba
commit c8770a54df
1 changed files with 5 additions and 3 deletions

View File

@ -90,11 +90,13 @@ _access_state_cb(void *data, Evas_Object *obj EINA_UNUSED)
static Evas_Object *
_access_object_get(const Evas_Object *obj, const char *part)
{
Evas_Object *po, *ao;
Evas_Object *po, *ao, *o;
ELM_PANEL_DATA_GET(obj, sd);
po = (Evas_Object *)edje_object_part_object_get
(elm_layout_edje_get(sd->scr_ly), part);
o = elm_layout_edje_get(sd->scr_ly);
edje_object_freeze(o);
po = (Evas_Object *)edje_object_part_object_get(o, part);
edje_object_thaw(o);
ao = evas_object_data_get(po, "_part_access_obj");
return ao;