summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/themeinterface.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-20 12:20:43 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-21 13:27:00 -0700
commit98ef01b2e4c21f15ddf92059fa7fdd77acd883ec (patch)
tree48146f616ae4eb1b5a2388623483a0a7b1f85c91 /mobile-widgets/themeinterface.h
parentf4f15039ac780903102eb101918329c6a488b9c3 (diff)
downloadsubsurface-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.h6
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