diff options
author | jan Iversen <jani@apache.org> | 2018-09-12 08:55:55 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-12 20:16:46 -0700 |
commit | c454f6954f0fc5fdd490c50ff13f556660de5ed8 (patch) | |
tree | c02f22bf63e17dd8c5200ac7d7e2acfc3b550026 /mobile-widgets/qml | |
parent | f8e9fb72f12990ce5c89de94eeb4effa2757d38b (diff) | |
download | subsurface-c454f6954f0fc5fdd490c50ff13f556660de5ed8.tar.gz |
mobile-widgets: make show_developer persistent
Remove developer from qmlprefs and use qPref instead
Update qml
show_developer is saved on disk, and thus remembered between starts.
Signed-off-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/Settings.qml | 4 | ||||
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index 4ba414adf..484a69a67 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -363,10 +363,10 @@ Kirigami.ScrollablePage { } SsrfSwitch { id: developerButton - checked: prefs.developer + checked: PrefDisplay.show_developer Layout.preferredWidth: gridWidth * 0.25 onClicked: { - prefs.developer = checked + PrefDisplay.show_developer = checked } } } diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 1120750e8..bdd3335e3 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -361,7 +361,7 @@ if you have network connectivity and want to sync your data to cloud storage."), name: ":/icons/ic_adb.svg" } text: qsTr("Developer") - visible: prefs.developer + visible: PrefDisplay.show_developer Kirigami.Action { text: qsTr("App log") onTriggered: { |