summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2019-04-19 13:05:14 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2019-04-19 13:05:14 +0200
commit33862479af54d2dea5db9658c6130f3e44637491 (patch)
treeb72d7f2768f8eb75677af0feacbf62d66e377ecd
parentebbee5301b975f2afcf22a0649b3ba7724c78089 (diff)
parent8d0647732fe984bc9c56d0f33c82583d6e52ff66 (diff)
Merge remote-tracking branch 'origin/master'
-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);