Skip to content

Commit 4452a0e

Browse files
authored
Improved readability of the console window, especially errors
Currently red on blue errors are almost unreadable in the console. This PR changes the background of the console content to semi-transparent black and changes the the error color to a slightly brighter shade of red.
1 parent c1b5363 commit 4452a0e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/overlay/widgets/LogWindow.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ void LogWindow::Draw(const ImVec2& size)
2929
const auto& style = ImGui::GetStyle();
3030

3131
const auto frameId = ImGui::GetID(("##" + m_loggerName).c_str());
32+
ImGui::PushStyleColor(ImGuiCol_FrameBg, ImVec4(0.0f, 0, 0, 0.5f));
3233
if (ImGui::BeginChildFrame(frameId, size, ImGuiWindowFlags_HorizontalScrollbar))
3334
{
3435
std::lock_guard _{m_lock};
@@ -61,7 +62,7 @@ void LogWindow::Draw(const ImVec2& size)
6162
case spdlog::level::level_enum::warn: ImGui::PushStyleColor(ImGuiCol_Text, ImVec4{1.0f, 1.0f, 0.0f, 1.0f}); break;
6263

6364
case spdlog::level::level_enum::err:
64-
case spdlog::level::level_enum::critical: ImGui::PushStyleColor(ImGuiCol_Text, ImVec4{1.0f, 0.0f, 0.0f, 1.0f}); break;
65+
case spdlog::level::level_enum::critical: ImGui::PushStyleColor(ImGuiCol_Text, ImVec4{1.0f, 0.1f, 0.2f, 1.0f}); break;
6566

6667
case spdlog::level::level_enum::info:
6768
default: ImGui::PushStyleColor(ImGuiCol_Text, ImGui::GetStyleColorVec4(ImGuiCol_Text));
@@ -95,6 +96,7 @@ void LogWindow::Draw(const ImVec2& size)
9596
}
9697
}
9798
ImGui::EndChildFrame();
99+
ImGui::PopStyleColor(1); // pop ImGuiCol_FrameBg
98100
}
99101

100102
void LogWindow::Log(const std::string& acpText)

0 commit comments

Comments
 (0)