From 5c315feb44dba874fa3525067c9141bb0122a743 Mon Sep 17 00:00:00 2001 From: mqrause Date: Sun, 17 Nov 2024 04:21:17 +0100 Subject: [PATCH] swap colors for imgui window title bars --- src/cata_imgui.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cata_imgui.cpp b/src/cata_imgui.cpp index 2caa15c66b7d3..800c7ff9248db 100644 --- a/src/cata_imgui.cpp +++ b/src/cata_imgui.cpp @@ -1072,9 +1072,9 @@ void cataimgui::init_colors() style.Colors[ImGuiCol_FrameBg] = c_dark_gray; style.Colors[ImGuiCol_FrameBgHovered] = c_black; style.Colors[ImGuiCol_FrameBgActive] = c_dark_gray; - style.Colors[ImGuiCol_TitleBg] = c_blue; - style.Colors[ImGuiCol_TitleBgActive] = c_dark_gray; - style.Colors[ImGuiCol_TitleBgCollapsed] = c_blue; + style.Colors[ImGuiCol_TitleBg] = c_dark_gray; + style.Colors[ImGuiCol_TitleBgActive] = c_blue; + style.Colors[ImGuiCol_TitleBgCollapsed] = c_dark_gray; style.Colors[ImGuiCol_MenuBarBg] = c_black; style.Colors[ImGuiCol_ScrollbarBg] = c_black; style.Colors[ImGuiCol_ScrollbarGrab] = c_dark_gray;