Fix theme initialization in Themable

This commit is contained in:
luisangelsm
2026-01-23 21:44:55 +01:00
parent 599ad67877
commit 561c2ae568

View File

@ -16,7 +16,8 @@ protected:
applyTheme(theme); applyTheme(theme);
}); });
applyTheme(ThemeManager::instance().getCurrentTheme()); theme = ThemeManager::instance().getCurrentTheme();
applyTheme(theme);
} }
virtual void applyTheme(const Theme &theme) = 0; virtual void applyTheme(const Theme &theme) = 0;