diff --git a/lib/external/imgui/source/imgui_widgets.cpp b/lib/external/imgui/source/imgui_widgets.cpp index 086fa0e61..7792b6b48 100644 --- a/lib/external/imgui/source/imgui_widgets.cpp +++ b/lib/external/imgui/source/imgui_widgets.cpp @@ -1565,8 +1565,8 @@ void ImGui::ShrinkWidths(ImGuiShrinkWidthItem* items, int count, float width_exc width_excess += items[n].Width - width_rounded; items[n].Width = width_rounded; } - while (width_excess > 0.0f) - for (int n = 0; n < count; n++) + while (width_excess >= 1.0f) + for (int n = 0; n < count && width_excess >= 1.0f; n++) if (items[n].Width + 1.0f <= items[n].InitialWidth) { items[n].Width += 1.0f; @@ -7638,7 +7638,7 @@ static void ImGui::TabBarLayout(ImGuiTabBar* tab_bar) width_excess = (section_0_w + section_2_w) - tab_bar->BarRect.GetWidth(); // Excess used to shrink leading/trailing section // With ImGuiTabBarFlags_FittingPolicyScroll policy, we will only shrink leading/trailing if the central section is not visible anymore - if (width_excess > 0.0f && ((tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyResizeDown) || !central_section_is_visible)) + if (width_excess >= 1.0f && ((tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyResizeDown) || !central_section_is_visible)) { int shrink_data_count = (central_section_is_visible ? sections[1].TabCount : sections[0].TabCount + sections[2].TabCount); int shrink_data_offset = (central_section_is_visible ? sections[0].TabCount + sections[2].TabCount : 0);