elm_panel: disable efl_ui_focus_layer functions 08/216208/1 accepted/tizen/unified/20191022.222702 submit/tizen/20191022.111446
authorYeongjong Lee <yj34.lee@samsung.com>
Tue, 22 Oct 2019 08:36:32 +0000 (17:36 +0900)
committerYeongjong Lee <yj34.lee@samsung.com>
Tue, 22 Oct 2019 08:38:12 +0000 (17:38 +0900)
This patch will be reverted with patch to disable focus manager.

@tizen_fix

Change-Id: Id8f6d6c9e5f20118f0d38500d4f19687e71ebde0

src/lib/elementary/elm_panel.c

index f71978c..2cc569f 100644 (file)
@@ -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;
 }