From 024f6769990c8eadcbf71eccb78bfb5328f9c660 Mon Sep 17 00:00:00 2001 From: binny1024 Date: Wed, 17 Aug 2022 14:24:48 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3AbilityComponent=20=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=BC=82=E5=B8=B8=E5=92=8C=E7=82=B9=E5=87=BB=E4=BD=8D?= =?UTF-8?q?=E7=BD=AE=E4=B8=8D=E6=AD=A3=E7=A1=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: binny1024 --- extension/window_extension/src/window_extension_stub_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/window_extension/src/window_extension_stub_impl.cpp b/extension/window_extension/src/window_extension_stub_impl.cpp index 2f6094b8..d005f351 100644 --- a/extension/window_extension/src/window_extension_stub_impl.cpp +++ b/extension/window_extension/src/window_extension_stub_impl.cpp @@ -63,7 +63,7 @@ void WindowExtensionStubImpl::SetBounds(const Rect& rect) window_->Resize(rect.width_, rect.height_); } if (rect.posX_ != orgRect.posX_ || rect.posY_ != orgRect.posY_) { - window_->MoveTo(orgRect.posX_, orgRect.posY_); + window_->MoveTo(rect.posX_, rect.posY_); } }