Skip to content

Commit fb278a2

Browse files
authored
Enable the quick panel pull-down gesture (#197)
1 parent 8d08f2a commit fb278a2

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

shell/platform/tizen/tizen_renderer_ecore_wl2.cc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,13 @@ bool TizenRendererEcoreWl2::SetupEcoreWlWindow(int32_t width, int32_t height) {
310310
ecore_wl2_window_focus_skip_set(ecore_wl2_window_, EINA_TRUE);
311311
}
312312

313+
ecore_wl2_window_indicator_state_set(ecore_wl2_window_,
314+
ECORE_WL2_INDICATOR_STATE_ON);
315+
ecore_wl2_window_indicator_opacity_set(ecore_wl2_window_,
316+
ECORE_WL2_INDICATOR_OPAQUE);
317+
ecore_wl2_indicator_visible_type_set(ecore_wl2_window_,
318+
ECORE_WL2_INDICATOR_VISIBLE_TYPE_SHOWN);
319+
313320
int rotations[4] = {0, 90, 180, 270};
314321
ecore_wl2_window_available_rotations_set(ecore_wl2_window_, rotations,
315322
sizeof(rotations) / sizeof(int));

shell/platform/tizen/tizen_renderer_evas_gl.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,9 @@ Evas_Object* TizenRendererEvasGL::SetupEvasWindow(int32_t* width,
665665
evas_object_resize(evas_window_, *width, *height);
666666
evas_object_raise(evas_window_);
667667

668+
elm_win_indicator_mode_set(evas_window_, ELM_WIN_INDICATOR_SHOW);
669+
elm_win_indicator_opacity_set(evas_window_, ELM_WIN_INDICATOR_OPAQUE);
670+
668671
Evas_Object* bg = elm_bg_add(evas_window_);
669672
evas_object_color_set(bg, 0x00, 0x00, 0x00, 0x00);
670673

0 commit comments

Comments
 (0)