1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-24 02:14:22 +00:00

Add dedicated style color for selected tree nodes

This commit is contained in:
Timo Suoranta 2025-05-01 09:44:50 +03:00 committed by Timo Suoranta
parent 44aa9a4b3a
commit 77550b8d37
3 changed files with 9 additions and 2 deletions

View file

@ -3697,6 +3697,7 @@ const char* ImGui::GetStyleColorName(ImGuiCol idx)
case ImGuiCol_Header: return "Header";
case ImGuiCol_HeaderHovered: return "HeaderHovered";
case ImGuiCol_HeaderActive: return "HeaderActive";
case ImGuiCol_HeaderSelected: return "HeaderSelected";
case ImGuiCol_Separator: return "Separator";
case ImGuiCol_SeparatorHovered: return "SeparatorHovered";
case ImGuiCol_SeparatorActive: return "SeparatorActive";