From 71ae10dfc1c80c60d35ac0b4bd9a1a139adc0161 Mon Sep 17 00:00:00 2001 From: Jaidyn Ann Date: Thu, 19 Aug 2021 17:31:43 -0500 Subject: [PATCH] Change timestamp color --- application/views/RenderView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/views/RenderView.cpp b/application/views/RenderView.cpp index e584f01..6b45287 100644 --- a/application/views/RenderView.cpp +++ b/application/views/RenderView.cpp @@ -56,10 +56,10 @@ RenderView::AppendTimestamp(time_t time) } if (time == 0) { - Append("[xx:xx] ", ui_color(B_LINK_HOVER_COLOR), B_BOLD_FACE); + Append("[xx:xx] ", ui_color(B_LINK_ACTIVE_COLOR), B_BOLD_FACE); return; } char timestamp[9] = { '\0' }; strftime(timestamp, 8, "[%H:%M] ", tm); - Append(timestamp, ui_color(B_LINK_HOVER_COLOR), B_BOLD_FACE); + Append(timestamp, ui_color(B_LINK_ACTIVE_COLOR), B_BOLD_FACE); }