mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Fixed incorrect parameter to ButtonBehavior() in Columns code - had no side-effect (#649)
Broken in 3eabad0321
This commit is contained in:
parent
91f11fb1bd
commit
ed20fcf9d5
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue