diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-03-20 12:20:43 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-21 13:27:00 -0700 |
commit | 98ef01b2e4c21f15ddf92059fa7fdd77acd883ec (patch) | |
tree | 48146f616ae4eb1b5a2388623483a0a7b1f85c91 /mobile-widgets/themeinterface.h | |
parent | f4f15039ac780903102eb101918329c6a488b9c3 (diff) | |
download | subsurface-98ef01b2e4c21f15ddf92059fa7fdd77acd883ec.tar.gz |
mobile UI: stop the use of dark icon theme
This was used very inconsistently and had more bugs than positive
impact.
See #2686
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/themeinterface.h')
-rw-r--r-- | mobile-widgets/themeinterface.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mobile-widgets/themeinterface.h b/mobile-widgets/themeinterface.h index 1c68699fc..35bb251a8 100644 --- a/mobile-widgets/themeinterface.h +++ b/mobile-widgets/themeinterface.h @@ -33,18 +33,14 @@ class themeInterface : public QObject { // Support Q_PROPERTY(QString currentTheme MEMBER m_currentTheme WRITE set_currentTheme NOTIFY currentThemeChanged) - Q_PROPERTY(QString iconStyle MEMBER m_iconStyle NOTIFY iconStyleChanged) public: static themeInterface *instance(); - static void setup(QQmlContext *ct); - static double currentScale(); public slots: static void set_currentTheme(const QString &theme); - static void set_currentScale(double); signals: @@ -68,7 +64,6 @@ signals: void currentScaleChanged(double); void currentThemeChanged(const QString &); - void iconStyleChanged(const QString &); private: themeInterface() {} @@ -94,6 +89,5 @@ private: static double m_titlePointSize; static QString m_currentTheme; - static QString m_iconStyle; }; #endif |