From d61db440e1c757a656ec2ab91f0c2f39ccd5d5f3 Mon Sep 17 00:00:00 2001
From: Yuhang Zhao <zhaoyuhang@rankyee.com>
Date: 摹曛, 28 12月 2023 15:19:56 +0800
Subject: [PATCH] minor tweaks

---
 src/widgets/widgetwindowagent_win.cpp    |    2 +-
 src/core/contexts/win32windowcontext.cpp |    4 ++++
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/core/contexts/win32windowcontext.cpp b/src/core/contexts/win32windowcontext.cpp
index 64050b5..a41d110 100644
--- a/src/core/contexts/win32windowcontext.cpp
+++ b/src/core/contexts/win32windowcontext.cpp
@@ -696,6 +696,10 @@
             } else {
                 ::AdjustWindowRectEx(&frame, style, FALSE, exStyle);
             }
+            frame.left = std::abs(frame.left);
+            frame.top = std::abs(frame.top);
+            frame.right = std::abs(frame.right);
+            frame.bottom = std::abs(frame.bottom);
             return QVariant::fromValue(rect2qrect(frame));
         }
 
diff --git a/src/widgets/widgetwindowagent_win.cpp b/src/widgets/widgetwindowagent_win.cpp
index d53bec5..02ea7e5 100644
--- a/src/widgets/widgetwindowagent_win.cpp
+++ b/src/widgets/widgetwindowagent_win.cpp
@@ -111,7 +111,7 @@
             // border, and we need to extend the non-client area to the whole title
             // bar.
             QRect frame = ctx->windowAttribute(QStringLiteral("title-bar-rect")).toRect();
-            QMargins margins{0, -frame.top(), 0, 0};
+            QMargins margins{0, frame.top(), 0, 0};
             ctx->setWindowAttribute(QStringLiteral("extra-margins"), QVariant::fromValue(margins));
         }
 

--
Gitblit v1.9.1