From ed20fcf9d5399d1e59bc40c2fd59d71f5ee9c95a Mon Sep 17 00:00:00 2001 From: ocornut Date: Wed, 11 May 2016 10:31:30 +0200 Subject: [PATCH] Fixed incorrect parameter to ButtonBehavior() in Columns code - had no side-effect (#649) Broken in 3eabad0321b7b7e949a87b3c6339fc5bea3403e7 --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index b3d87cce..78622fff 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -9179,7 +9179,7 @@ void ImGui::Columns(int columns_count, const char* id, bool border) continue; bool hovered, held; - ButtonBehavior(column_rect, column_id, &hovered, &held, true); + ButtonBehavior(column_rect, column_id, &hovered, &held); if (hovered || held) g.MouseCursor = ImGuiMouseCursor_ResizeEW;