From 561c2ae568d65247871c284b4ea8246051af32f2 Mon Sep 17 00:00:00 2001 From: luisangelsm Date: Fri, 23 Jan 2026 21:44:55 +0100 Subject: [PATCH] Fix theme initialization in Themable --- common/themes/themable.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/themes/themable.h b/common/themes/themable.h index 45516270..43694f77 100644 --- a/common/themes/themable.h +++ b/common/themes/themable.h @@ -16,7 +16,8 @@ protected: applyTheme(theme); }); - applyTheme(ThemeManager::instance().getCurrentTheme()); + theme = ThemeManager::instance().getCurrentTheme(); + applyTheme(theme); } virtual void applyTheme(const Theme &theme) = 0;