From: Yeongjong Lee Date: Tue, 22 Oct 2019 08:36:32 +0000 (+0900) Subject: elm_panel: disable efl_ui_focus_layer functions X-Git-Tag: accepted/tizen/unified/20191022.222702^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1b29036cac3d6da98e0cc79c9e9ff8ad8ddce3c;p=platform%2Fupstream%2Fefl.git elm_panel: disable efl_ui_focus_layer functions This patch will be reverted with patch to disable focus manager. @tizen_fix Change-Id: Id8f6d6c9e5f20118f0d38500d4f19687e71ebde0 --- diff --git a/src/lib/elementary/elm_panel.c b/src/lib/elementary/elm_panel.c index f71978c..2cc569f 100644 --- a/src/lib/elementary/elm_panel.c +++ b/src/lib/elementary/elm_panel.c @@ -493,7 +493,8 @@ _panel_toggle(void *data EINA_UNUSED, edje_object_message_signal_process(wd->resize_obj); } - efl_ui_focus_layer_enable_set(obj, !sd->hidden); + //TIZEN_ONLY(20191022): disable focus layer functions + //efl_ui_focus_layer_enable_set(obj, !sd->hidden); efl_event_callback_legacy_call(obj, ELM_PANEL_EVENT_TOGGLED, NULL); } @@ -1065,7 +1066,8 @@ _elm_panel_efl_object_constructor(Eo *obj, Elm_Panel_Data *_pd EINA_UNUSED) evas_object_smart_callbacks_descriptions_set(obj, _smart_callbacks); efl_access_object_role_set(obj, EFL_ACCESS_ROLE_PANEL); - efl_ui_focus_layer_behaviour_set(obj, EINA_FALSE, EINA_FALSE); + //TIZEN_ONLY(20191022): disable focus layer functions + //efl_ui_focus_layer_behaviour_set(obj, EINA_FALSE, EINA_FALSE); return obj; }