From 23b934f529c74def96252c8403ba8e2cc623ab61 Mon Sep 17 00:00:00 2001 From: "joogab.yun" Date: Wed, 30 Aug 2023 17:46:41 +0900 Subject: [PATCH] [Tizen] Call ecore_wl2_window_commit() in LockedPointerRegionSet and LockedPointerCursorPositionHintSet Change-Id: I1f9a02452e87db5c4d022edfcdacdd6f3eb5b898 --- .../window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dali/internal/window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.cpp b/dali/internal/window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.cpp index 34e019e..82d8a67 100644 --- a/dali/internal/window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.cpp +++ b/dali/internal/window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.cpp @@ -3396,11 +3396,13 @@ bool WindowBaseEcoreWl2::PointerConstraintsUnlock() void WindowBaseEcoreWl2::LockedPointerRegionSet(int32_t x, int32_t y, int32_t width, int32_t height) { ecore_wl2_window_locked_pointer_region_set(mEcoreWindow, x, y, width, height); + ecore_wl2_window_commit(mEcoreWindow, EINA_TRUE); } void WindowBaseEcoreWl2::LockedPointerCursorPositionHintSet(int32_t x, int32_t y) { ecore_wl2_window_locked_pointer_cursor_position_hint_set(mEcoreWindow, x, y); + ecore_wl2_window_commit(mEcoreWindow, EINA_TRUE); } bool WindowBaseEcoreWl2::PointerWarp(int32_t x, int32_t y) -- 2.7.4