From 58ef035603b8e3bf9299b4bddcdebcc653ea8810 Mon Sep 17 00:00:00 2001 From: SineStriker <trueful@163.com> Date: 周五, 29 12月 2023 11:50:33 +0800 Subject: [PATCH] Window bar support I18N --- src/core/contexts/win32windowcontext.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/contexts/win32windowcontext.cpp b/src/core/contexts/win32windowcontext.cpp index e4707dc..17a42c1 100644 --- a/src/core/contexts/win32windowcontext.cpp +++ b/src/core/contexts/win32windowcontext.cpp @@ -731,13 +731,13 @@ static auto margins = QVariant::fromValue(QMargins(1, 1, 1, 1)); // If we remove the system border, the window will lose its shadow. If dwm is enabled, - // then you need to set at least 1px margins, otherwise the following operation will + // then we need to set at least 1px margins, otherwise the following operation will // fail with no effect. setWindowAttribute(QStringLiteral("extra-margins"), margins); } // We should disable WS_SYSMENU, otherwise the system button icons will be visible if mica - // is enabled and the title bar is transparent + // is enabled and the title bar is transparent. { auto style = ::GetWindowLongPtrW(hWnd, GWL_STYLE); if (isSystemBorderEnabled()) { -- Gitblit v1.9.1