From 86926ffd2795b52c1919d7beee55e8efd5e1f60b Mon Sep 17 00:00:00 2001 From: Kang Yu Date: Sun, 16 Mar 2025 15:36:56 -0700 Subject: [PATCH] #388, fix missing capture of maximized window --- .../Common/PersistentWindowProcessor.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Ninjacrab.PersistentWindows.Solution/Common/PersistentWindowProcessor.cs b/Ninjacrab.PersistentWindows.Solution/Common/PersistentWindowProcessor.cs index e1bce73..b8b6751 100644 --- a/Ninjacrab.PersistentWindows.Solution/Common/PersistentWindowProcessor.cs +++ b/Ninjacrab.PersistentWindows.Solution/Common/PersistentWindowProcessor.cs @@ -2099,6 +2099,9 @@ namespace PersistentWindows.Common if (fullScreenGamingWindow != IntPtr.Zero) return; + if (User32.IsZoomed(hwnd)) + userMove = true; + if (foreGroundWindow == hwnd) { StartCaptureTimer(UserMoveLatency);