summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2019-04-16 10:56:33 -0700
committerGreg Ercolano <erco@seriss.com>2019-04-16 10:56:33 -0700
commit8d0647732fe984bc9c56d0f33c82583d6e52ff66 (patch)
tree53333b347eed7533955defc03ca6ab9fca0d54d4
parent698fe39ff16df2b7440df3cdbb969cba09798935 (diff)
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.
-rw-r--r--examples/tree-custom-draw-items.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/tree-custom-draw-items.cxx b/examples/tree-custom-draw-items.cxx
index 7c5265ba9..45bde388e 100644
--- a/examples/tree-custom-draw-items.cxx
+++ b/examples/tree-custom-draw-items.cxx
@@ -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);