mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-23 04:17:00 +00:00
Hovering a column set the resize <> mouse cursor #155
This commit is contained in:
parent
b024ff85f7
commit
7c8946b9b7
@ -7111,6 +7111,8 @@ void ImGui::Columns(int columns_count, const char* id, bool border)
|
|||||||
|
|
||||||
bool hovered, held;
|
bool hovered, held;
|
||||||
ButtonBehavior(column_rect, column_id, &hovered, &held, true);
|
ButtonBehavior(column_rect, column_id, &hovered, &held, true);
|
||||||
|
if (hovered || held)
|
||||||
|
g.MouseCursor = ImGuiMouseCursor_ResizeEW;
|
||||||
|
|
||||||
// Draw before resize so our items positioning are in sync with the line being drawn
|
// Draw before resize so our items positioning are in sync with the line being drawn
|
||||||
const ImU32 col = window->Color(held ? ImGuiCol_ColumnActive : hovered ? ImGuiCol_ColumnHovered : ImGuiCol_Column);
|
const ImU32 col = window->Color(held ? ImGuiCol_ColumnActive : hovered ? ImGuiCol_ColumnHovered : ImGuiCol_Column);
|
||||||
|
Loading…
Reference in New Issue
Block a user