From 95c41117833039b44060973c33d2fc61f13ea284 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Date: Wed, 12 Feb 2025 12:39:44 +0100 Subject: [PATCH] Viewports: default to first monitor is viewport is outside bounds. (#8393, #8385) Before the assert was introduced in d66f4e589 the viewport would be eventually clamped with ClampWindowPos using g.FallbackMonitor, but code would run temporarly with DpiScale=0. --- docs/CHANGELOG.txt | 5 +++++ imgui.cpp | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index 7a37d8bbe..d89f16783 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -83,6 +83,11 @@ Other changes: - Backends: WebGPU: Fix for DAWN API rename WGPUProgrammableStageDescriptor -> WGPUComputeState. [@PhantomCloak] (#8369) +Docking+Viewports Branch: + +- Viewports: fixed an assert when a window load settings with a position outside + monitor bounds, when there are multiple monitors. (#8393, #8385) [@gaborodriguez] + ----------------------------------------------------------------------- VERSION 1.91.8 (Released 2025-01-31) diff --git a/imgui.cpp b/imgui.cpp index e222c3205..7050db209 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -16536,13 +16536,14 @@ static int ImGui::FindPlatformMonitorForRect(const ImRect& rect) ImGuiContext& g = *GImGui; const int monitor_count = g.PlatformIO.Monitors.Size; + IM_ASSERT(monitor_count > 0); if (monitor_count <= 1) - return monitor_count - 1; + return 0; // Use a minimum threshold of 1.0f so a zero-sized rect won't false positive, and will still find the correct monitor given its position. // This is necessary for tooltips which always resize down to zero at first. const float surface_threshold = ImMax(rect.GetWidth() * rect.GetHeight() * 0.5f, 1.0f); - int best_monitor_n = -1; + int best_monitor_n = 0; // Default to the first monitor as fallback float best_monitor_surface = 0.001f; for (int monitor_n = 0; monitor_n < g.PlatformIO.Monitors.Size && best_monitor_surface < surface_threshold; monitor_n++)