Change timestamp color

This commit is contained in:
Jaidyn Ann 2021-08-19 17:31:43 -05:00
parent d510f1c294
commit 71ae10dfc1

View File

@ -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);
}