From 41a4103ffcce0efb6d532a15d307ab98177c997e Mon Sep 17 00:00:00 2001
From: Sine Striker <trueful@163.com>
Date: 周一, 04 12月 2023 16:57:47 +0800
Subject: [PATCH] Update delegate

---
 src/core/contexts/win32windowcontext.cpp |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/core/contexts/win32windowcontext.cpp b/src/core/contexts/win32windowcontext.cpp
index 02f3cd1..d88418e 100644
--- a/src/core/contexts/win32windowcontext.cpp
+++ b/src/core/contexts/win32windowcontext.cpp
@@ -158,13 +158,13 @@
         if (apis.pGetDpiForWindow) {         // Win10
             return apis.pGetDpiForWindow(hwnd);
         } else if (apis.pGetDpiForMonitor) { // Win8.1
-             HMONITOR monitor = ::MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
+            HMONITOR monitor = ::MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
             UINT dpiX{USER_DEFAULT_SCREEN_DPI};
             UINT dpiY{USER_DEFAULT_SCREEN_DPI};
             apis.pGetDpiForMonitor(monitor, MDT_EFFECTIVE_DPI, &dpiX, &dpiY);
             return dpiX;
         } else { // Win2K
-             HDC hdc = ::GetDC(nullptr);
+            HDC hdc = ::GetDC(nullptr);
             const int dpiX = ::GetDeviceCaps(hdc, LOGPIXELSX);
             const int dpiY = ::GetDeviceCaps(hdc, LOGPIXELSY);
             ::ReleaseDC(nullptr, hdc);
@@ -194,7 +194,7 @@
         }
         // Use "MONITOR_DEFAULTTONEAREST" here so that we can still get the correct
         // monitor even if the window is minimized.
-         HMONITOR monitor = ::MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
+        HMONITOR monitor = ::MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
         MONITORINFOEXW monitorInfo{};
         monitorInfo.cbSize = sizeof(monitorInfo);
         ::GetMonitorInfoW(monitor, &monitorInfo);
@@ -945,9 +945,9 @@
                             APPBARDATA abd2{};
                             abd2.cbSize = sizeof(abd2);
                             abd2.hWnd = ::FindWindowW(L"Shell_TrayWnd", nullptr);
-                             HMONITOR windowMonitor =
+                            HMONITOR windowMonitor =
                                 ::MonitorFromWindow(hWnd, MONITOR_DEFAULTTONEAREST);
-                             HMONITOR taskbarMonitor =
+                            HMONITOR taskbarMonitor =
                                 ::MonitorFromWindow(abd2.hWnd, MONITOR_DEFAULTTOPRIMARY);
                             if (taskbarMonitor == windowMonitor) {
                                 ::SHAppBarMessage(ABM_GETTASKBARPOS, &abd2);

--
Gitblit v1.9.1