From fc4a4d107145a3b91a5cbde9d20f25f3bc5c33cc Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Wed, 24 Feb 2021 18:19:17 -0800 Subject: [PATCH] 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. --- widgetry/src/event_ctx.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/widgetry/src/event_ctx.rs b/widgetry/src/event_ctx.rs index 66238e8724..8215d5fda8 100644 --- a/widgetry/src/event_ctx.rs +++ b/widgetry/src/event_ctx.rs @@ -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()