summaryrefslogtreecommitdiff
path: root/src/ui/ui_log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/ui_log.cpp')
-rw-r--r--src/ui/ui_log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/ui_log.cpp b/src/ui/ui_log.cpp
index da0d29d..5b380a3 100644
--- a/src/ui/ui_log.cpp
+++ b/src/ui/ui_log.cpp
@@ -31,6 +31,6 @@ void ui_draw_log()
if (cursor < 0) {
cursor = (l->write_cursor + i) % MAX_LEN_LOG_HISTORY;
}
- ImGui::Text(l->history[cursor]);
+ ImGui::TextColored(l->colors[cursor], l->history[cursor]);
}
} \ No newline at end of file