diff --git a/Demos/Cube/Cube.cpp b/Demos/Cube/Cube.cpp index 156d0ea2b8..253e37ff97 100644 --- a/Demos/Cube/Cube.cpp +++ b/Demos/Cube/Cube.cpp @@ -203,7 +203,6 @@ int main(int argc, char** argv) auto& time = cube.add(); time.set_relative_rect({ 0, 4, 40, 10 }); time.move_by({ window->width() - time.width(), 0 }); - time.set_foreground_color(Color::from_rgb(0x222222)); cube.set_stat_label(time); window->show(); diff --git a/Demos/Fire/Fire.cpp b/Demos/Fire/Fire.cpp index 6041df4222..3d1c486cc7 100644 --- a/Demos/Fire/Fire.cpp +++ b/Demos/Fire/Fire.cpp @@ -226,7 +226,6 @@ int main(int argc, char** argv) auto& time = fire.add(); time.set_relative_rect({ 0, 4, 40, 10 }); time.move_by({ window->width() - time.width(), 0 }); - time.set_foreground_color(Color::from_rgb(0x444444)); fire.set_stat_label(time); window->show();