Skip to content

Commit 4227250

Browse files
committed
Backends: ensure that ImGuiPlatformMonitor list is available after backend Init call. (#7995)
1 parent ae86889 commit 4227250

5 files changed

+12
-4
lines changed

backends/imgui_impl_glfw.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,8 @@ static bool ImGui_ImplGlfw_Init(GLFWwindow* window, bool install_callbacks, Glfw
649649
if (install_callbacks)
650650
ImGui_ImplGlfw_InstallCallbacks(window);
651651

652-
// Update monitors the first time (note: monitor callback are broken in GLFW 3.2 and earlier, see github.com/glfw/glfw/issues/784)
652+
// Update monitor a first time during init
653+
// (note: monitor callback are broken in GLFW 3.2 and earlier, see github.com/glfw/glfw/issues/784)
653654
ImGui_ImplGlfw_UpdateMonitors();
654655
glfwSetMonitorCallback(ImGui_ImplGlfw_MonitorCallback);
655656

backends/imgui_impl_sdl2.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,6 @@ static bool ImGui_ImplSDL2_Init(SDL_Window* window, SDL_Renderer* renderer, void
520520
#else
521521
bd->MouseCanReportHoveredViewport = false;
522522
#endif
523-
bd->WantUpdateMonitors = true;
524523

525524
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
526525
platform_io.Platform_SetClipboardTextFn = ImGui_ImplSDL2_SetClipboardText;
@@ -531,6 +530,9 @@ static bool ImGui_ImplSDL2_Init(SDL_Window* window, SDL_Renderer* renderer, void
531530
platform_io.Platform_OpenInShellFn = [](ImGuiContext*, const char* url) { ImGui_ImplSDL2_EmscriptenOpenURL(url); return true; };
532531
#endif
533532

533+
// Update monitor a first time during init
534+
ImGui_ImplSDL2_UpdateMonitors();
535+
534536
// Gamepad handling
535537
bd->GamepadMode = ImGui_ImplSDL2_GamepadMode_AutoFirst;
536538
bd->WantUpdateGamepadsList = true;

backends/imgui_impl_sdl3.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -509,13 +509,15 @@ static bool ImGui_ImplSDL3_Init(SDL_Window* window, SDL_Renderer* renderer, void
509509
#else
510510
bd->MouseCanReportHoveredViewport = false;
511511
#endif
512-
bd->WantUpdateMonitors = true;
513512

514513
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
515514
platform_io.Platform_SetClipboardTextFn = ImGui_ImplSDL3_SetClipboardText;
516515
platform_io.Platform_GetClipboardTextFn = ImGui_ImplSDL3_GetClipboardText;
517516
platform_io.Platform_SetImeDataFn = ImGui_ImplSDL3_PlatformSetImeData;
518517

518+
// Update monitor a first time during init
519+
ImGui_ImplSDL3_UpdateMonitors();
520+
519521
// Gamepad handling
520522
bd->GamepadMode = ImGui_ImplSDL3_GamepadMode_AutoFirst;
521523
bd->WantUpdateGamepadsList = true;

backends/imgui_impl_win32.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,14 @@ static bool ImGui_ImplWin32_InitEx(void* hwnd, bool platform_has_own_dc)
176176
io.BackendFlags |= ImGuiBackendFlags_HasMouseHoveredViewport; // We can call io.AddMouseViewportEvent() with correct data (optional)
177177

178178
bd->hWnd = (HWND)hwnd;
179-
bd->WantUpdateMonitors = true;
180179
bd->TicksPerSecond = perf_frequency;
181180
bd->Time = perf_counter;
182181
bd->LastMouseCursor = ImGuiMouseCursor_COUNT;
183182
ImGui_ImplWin32_UpdateKeyboardCodePage();
184183

184+
// Update monitor a first time during init
185+
ImGui_ImplWin32_UpdateMonitors();
186+
185187
// Our mouse update function expect PlatformHandle to be filled for the main viewport
186188
ImGuiViewport* main_viewport = ImGui::GetMainViewport();
187189
main_viewport->PlatformHandle = main_viewport->PlatformHandleRaw = (void*)bd->hWnd;

docs/CHANGELOG.txt

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ Docking+Viewports Branch:
9191

9292
- Viewports: fixed an issue where a window manually constrained to the main viewport while crossing
9393
over main viewport bounds isn't translated properly. (#7985)
94+
- Backends: SDL2, SDL3, Win32: ensure that ImGuiPlatformMonitor list is available after backend Init call. (#7995)
9495
- Backends: Win32: fixed direct calls to platform_io.Platform_SetWindowPos()/Platform_SetWindowSize()
9596
on windows created by application (typically main viewport).
9697
- Backends: Win32: fixed an issue where a viewport destroyed while clicking would hog

0 commit comments

Comments
 (0)