Fix time drawing color (was not being set)

The items showing the current time looked ugly on linux
when selected, since they were drawing in the leftover
blue color used for drawing the R-G-B box pattern.
This commit is contained in:
Greg Ercolano 2019-04-16 10:56:33 -07:00
parent 698fe39ff1
commit 8d0647732f
1 changed files with 1 additions and 0 deletions

View File

@ -97,6 +97,7 @@ public:
X += 35;
// Render the date and time, one over the other
fl_font(labelfont(), 8); // small font
fl_color(fg);
const struct tm *tm = GetTimeStruct();
char s[80];
sprintf(s, "Date: %02d/%02d/%02d", tm->tm_mon+1, tm->tm_mday, tm->tm_year % 100);