From 13aad032f4cacd16c51370dbac564de241d444ea Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 15 Feb 2023 07:34:36 -0500 Subject: [PATCH] Fix InfoLabel text color when switching UI themes. --- src/app/MenuBar.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/MenuBar.cpp b/src/app/MenuBar.cpp index 449ab589..1b5f538a 100644 --- a/src/app/MenuBar.cpp +++ b/src/app/MenuBar.cpp @@ -936,6 +936,8 @@ struct InfoLabel : ui::Label { text += APP_NAME + " " + APP_EDITION_NAME + " " + APP_VERSION + " " + APP_OS_NAME + " " + APP_CPU_NAME; + color = bndGetTheme()->menuTheme.textColor; + Label::step(); } };