Call ecore_wl2_window_commit() in LockedPointerRegionSet and LockedPointerCursorPosit... 33/298033/1
authorjoogab.yun <joogab.yun@samsung.com>
Wed, 30 Aug 2023 08:46:41 +0000 (17:46 +0900)
committerjoogab.yun <joogab.yun@samsung.com>
Wed, 30 Aug 2023 08:46:41 +0000 (17:46 +0900)
Change-Id: I1f9a02452e87db5c4d022edfcdacdd6f3eb5b898

dali/internal/window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.cpp

index 34e019e117d72b49dc6fd2d657d935ccab9d7c56..82d8a67ed55b05c912cadb8162ef8eab1feaac18 100644 (file)
@@ -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)