Resize |events_overlay_| on parent window resize 81/325081/4
authorSumant Chaudhary <sumant.c@samsung.com>
Mon, 2 Jun 2025 10:03:56 +0000 (15:33 +0530)
committerBot Blink <blinkbot@samsung.com>
Tue, 3 Jun 2025 23:27:27 +0000 (23:27 +0000)
"evas_object_resize" call for |events_overlay_| was missing
in SetBoundsInPixels due to which the resized area on chrome was unclickable.

Change-Id: I3b7145aa886cdf9dd5d5879da42b51ed5b46a553
Signed-off-by: Sumant Chaudhary <sumant.c@samsung.com>
tizen_src/chromium_impl/ui/ozone/platform/efl/efl_window.cc

index 87f1c55fa9d72993ad5b3438e0cddcb454d3fc9c..4af1c9cd119d69c14c0ae8990ba854792fdd94e6 100644 (file)
@@ -222,6 +222,9 @@ void EflWindow::SetBoundsInPixels(const gfx::Rect& bounds) {
 #else
   if (ee_)
     ecore_evas_resize(ee_, bounds.width(), bounds.height());
+
+  if (events_overlay_)
+    evas_object_resize(events_overlay_, bounds_.width(), bounds_.height());
 #endif
   EflScreen::UpdateDisplayInfo(ee_);
 }