From 91eb13ddc322382ba91065af21f9a0fef331f271 Mon Sep 17 00:00:00 2001 From: Keuckdo Bang Date: Thu, 11 Apr 2013 21:10:43 +0900 Subject: [PATCH] When showing popup, operation of quickpanel was available. Change-Id: I18a8aae17586fb60321abaed92667219bfe684be --- src/ui/FUi_EcoreEvas.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ui/FUi_EcoreEvas.cpp b/src/ui/FUi_EcoreEvas.cpp index 7dd41d9..5fe23d0 100644 --- a/src/ui/FUi_EcoreEvas.cpp +++ b/src/ui/FUi_EcoreEvas.cpp @@ -1234,6 +1234,8 @@ _EcoreEvas::RotateWindow(const _Window& window, int orientation) nativeBounds = pPopup->GetNativeBounds(false); } + nativeBounds = _CoordinateSystemUtils::Transform(nativeBounds); + winBounds.x = nativeBounds.x; winBounds.y = nativeBounds.y; winBounds.width = nativeBounds.width; @@ -2216,6 +2218,8 @@ _EcoreEvas::SetWindowBounds(const _Window& window, const Rectangle& bounds) nativeBounds = pPopup->GetNativeBounds(false); } + nativeBounds = _CoordinateSystemUtils::Transform(nativeBounds); + winBounds.x = nativeBounds.x; winBounds.y = nativeBounds.y; winBounds.width = nativeBounds.width; @@ -2307,6 +2311,8 @@ _EcoreEvas::SetWindowBounds(const _Window& window, const FloatRectangle& bounds) { nativeBounds = pPopup->GetNativeBounds(false); } + + nativeBounds = _CoordinateSystemUtils::Transform(nativeBounds); winBounds.x = nativeBounds.x; winBounds.y = nativeBounds.y; -- 2.7.4