3 color constants (see enum ImGuiCol_ in imgui.h) were renamed in Dear ImGui version 1.90.9:
/**
ImGuiCol_TabActive = ImGuiCol_TabSelected, // [renamed in 1.90.9]
ImGuiCol_TabUnfocused = ImGuiCol_TabDimmed, // [renamed in 1.90.9]
ImGuiCol_TabUnfocusedActive = ImGuiCol_TabDimmedSelected, // [renamed in 1.90.9]
**/
Suggest replacing:
"TabActive" to "TabSelected",
"TabUnfocused" to "TabDimmed"
"TabUnfocusedActive " to "TabDimmedSelected"
However, the old names are still supported as aliases to the new names (same constant enum value.)
3 color constants (see enum ImGuiCol_ in imgui.h) were renamed in Dear ImGui version 1.90.9:
Suggest replacing:
"TabActive" to "TabSelected",
"TabUnfocused" to "TabDimmed"
"TabUnfocusedActive " to "TabDimmedSelected"
However, the old names are still supported as aliases to the new names (same constant enum value.)