From b2c3e37d55ee03e7f4cd6ad3f8d3cad333097cc0 Mon Sep 17 00:00:00 2001 From: ocornut Date: Thu, 19 Mar 2026 16:58:14 +0100 Subject: [PATCH] Multi-Select: fix/amend 9700846. . (#9307, #1861) --- imgui_widgets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui_widgets.cpp b/imgui_widgets.cpp index 936de9098..7e51511dc 100644 --- a/imgui_widgets.cpp +++ b/imgui_widgets.cpp @@ -8170,7 +8170,7 @@ void ImGui::MultiSelectItemHeader(ImGuiID id, bool* p_selected, ImGuiButtonFlags { ImGuiButtonFlags button_flags = *p_button_flags; button_flags |= ImGuiButtonFlags_NoHoveredOnFocus; - button_flags &= ~(ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickRelease); + button_flags &= ~(ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnClickRelease); if (ms->Flags & ImGuiMultiSelectFlags_SelectOnClickAlways) button_flags |= ImGuiButtonFlags_PressedOnClick; else if (ms->Flags & ImGuiMultiSelectFlags_SelectOnClickRelease)