Skip to content

Commit ea59440

Browse files
PathogenDavidocornut
authored andcommitted
Backends: Win32: WM_SETTINGCHANGE's SPI_SETWORKAREA message also triggers a refresh of monitor list. (ocornut#8415)
1 parent afd659b commit ea59440

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

backends/imgui_impl_win32.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
// CHANGELOG
2424
// (minor and older changes stripped away, please see git history for details)
2525
// 2025-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
26+
// 2025-02-21: [Docking] WM_SETTINGCHANGE's SPI_SETWORKAREA message also triggers a refresh of monitor list. (#8415)
2627
// 2024-11-21: [Docking] Fixed a crash when multiple processes are running with multi-viewports, caused by misusage of GetProp(). (#8162, #8069)
2728
// 2024-10-28: [Docking] Rely on property stored inside HWND to retrieve context/viewport, should facilitate attempt to use this for parallel contexts. (#8069)
2829
// 2024-09-16: [Docking] Inputs: fixed an issue where a viewport destroyed while clicking would hog mouse tracking and temporary lead to incorrect update of HoveredWindow. (#7971)
@@ -865,6 +866,10 @@ IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandlerEx(HWND hwnd, UINT msg, WPA
865866
case WM_DISPLAYCHANGE:
866867
bd->WantUpdateMonitors = true;
867868
return 0;
869+
case WM_SETTINGCHANGE:
870+
if (wParam == SPI_SETWORKAREA)
871+
bd->WantUpdateMonitors = true;
872+
return 0;
868873
}
869874
return 0;
870875
}

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ Docking+Viewports Branch:
9999

100100
- Viewports: fixed an assert when a window load settings with a position outside
101101
monitor bounds, when there are multiple monitors. (#8393, #8385) [@gaborodriguez]
102+
- Backends: Win32: WM_SETTINGCHANGE's SPI_SETWORKAREA message also triggers a refresh
103+
of monitor list, as they contain work area information. (#8415) [@PathogenDavid, @lailoken]
102104

103105

104106
-----------------------------------------------------------------------

0 commit comments

Comments
 (0)