From 9170beaccb485448e1c31594d4f760e3381182b9 Mon Sep 17 00:00:00 2001 From: moxian Date: Sun, 17 Nov 2024 01:47:48 -0800 Subject: [PATCH] Revert the horizontal separator color back to dark-gray it was seemingly set to blue accidentally --- src/cata_imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cata_imgui.cpp b/src/cata_imgui.cpp index 2caa15c66b7d3..4f93a21b0b19d 100644 --- a/src/cata_imgui.cpp +++ b/src/cata_imgui.cpp @@ -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;