diff options
author | George Hazan <george.hazan@gmail.com> | 2025-05-12 17:25:26 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-05-12 17:25:26 +0300 |
commit | c9c2324e4f13e66c75d886f94dbacac1e28b191f (patch) | |
tree | 5dca20847ea0506c79547f7f5dede0fce765889f /plugins/StatusManager | |
parent | b0862a1dcc840b14b988b64a410bfc9076e624d3 (diff) |
fixes #5009 ("Pin to desktop" option doesn't work in all modern Windows)
Diffstat (limited to 'plugins/StatusManager')
-rw-r--r-- | plugins/StatusManager/src/ss_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/StatusManager/src/ss_main.cpp b/plugins/StatusManager/src/ss_main.cpp index 8820699781..52d704d42e 100644 --- a/plugins/StatusManager/src/ss_main.cpp +++ b/plugins/StatusManager/src/ss_main.cpp @@ -388,7 +388,7 @@ int SSModuleLoaded(WPARAM, LPARAM) WINDOWPLACEMENT wndpl = { sizeof(wndpl) }; if (GetWindowPlacement(hClist, &wndpl)) { - if (wndpl.showCmd == SW_SHOWNORMAL && !Clist_IsDocked()) { + if (wndpl.showCmd == SW_SHOWNORMAL) { RECT rc; if (GetWindowRect(hClist, &rc)) { int x = rc.left; |