Skip to content

Commit

Permalink
Revert the horizontal separator color back to dark-gray
Browse files Browse the repository at this point in the history
it was seemingly set to blue accidentally
  • Loading branch information
moxian committed Nov 17, 2024
1 parent 9ac7d05 commit 9170bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cata_imgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ void cataimgui::init_colors()
style.Colors[ImGuiCol_Header] = c_blue;
style.Colors[ImGuiCol_HeaderHovered] = c_black;
style.Colors[ImGuiCol_HeaderActive] = c_dark_gray;
style.Colors[ImGuiCol_Separator] = c_blue;
style.Colors[ImGuiCol_Separator] = c_dark_gray;
style.Colors[ImGuiCol_SeparatorHovered] = c_white;
style.Colors[ImGuiCol_SeparatorActive] = c_white;
style.Colors[ImGuiCol_ResizeGrip] = c_light_gray;
Expand Down

0 comments on commit 9170bea

Please sign in to comment.