diff options
Diffstat (limited to 'mobile-widgets/themeinterface.cpp')
-rw-r--r-- | mobile-widgets/themeinterface.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mobile-widgets/themeinterface.cpp b/mobile-widgets/themeinterface.cpp index 21c189618..edb998922 100644 --- a/mobile-widgets/themeinterface.cpp +++ b/mobile-widgets/themeinterface.cpp @@ -107,4 +107,17 @@ void themeInterface::update_theme() m_textColor = m_darkTextColor; m_iconStyle = ":/icons-dark"; } + emit backgroundColorChanged(m_backgroundColor); + emit contrastAccentColorChanged(m_contrastAccentColor); + emit darkerPrimaryColorChanged(m_darkerPrimaryColor); + emit darkerPrimaryTextColorChanged(m_darkerPrimaryTextColor); + emit drawerColorChanged(m_drawerColor); + emit lightDrawerColorChanged(m_lightDrawerColor); + emit lightPrimaryColorChanged(m_lightPrimaryColor); + emit lightPrimaryTextColorChanged(m_lightPrimaryTextColor); + emit primaryColorChanged(m_primaryColor); + emit primaryTextColorChanged(m_primaryTextColor); + emit secondaryTextColorChanged(m_secondaryTextColor); + emit textColorChanged(m_textColor); + emit iconStyleChanged(m_iconStyle); } |