Fix loading screen legibility

long-term we should probably get all the colors from Style, but until
then just hardcode White text since all other colors are hardcoded.
This commit is contained in:
Michael Kirk 2021-02-24 18:19:17 -08:00 committed by Dustin Carlino
parent 7e4d529872
commit fc4a4d1071

View File

@ -168,6 +168,7 @@ impl<'a> EventCtx<'a> {
self.style
.loading_tips
.clone()
.default_fg(Color::WHITE)
.wrap_to_pct(self, 25)
.draw(self)
.container()