diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2017-07-20 21:54:42 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-23 03:20:58 +0900 |
commit | f96dacc94d5a255f2aca09b84cd1eb6e23ac7415 (patch) | |
tree | 8de3cfb811a42fd395c33d681c62d57514cf58e8 | |
parent | ee210c3bcdbbe174c6b519896fd1b3e3c3d8ec03 (diff) | |
download | subsurface-f96dacc94d5a255f2aca09b84cd1eb6e23ac7415.tar.gz |
QML UI: remove the save button from settings page
As per title.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
-rw-r--r-- | mobile-widgets/qml/Settings.qml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index 4cd28bb14..830aa33f8 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -18,19 +18,6 @@ Kirigami.ScrollablePage { property real col3Width: gridWidth * 0.25 property real col4Width: gridWidth * 0.25 - actions { - main: Kirigami.Action { - text: qsTr("Save") - iconName: "document-save" - onTriggered: { - manager.distanceThreshold = distanceThreshold.text - manager.timeThreshold = timeThreshold.text - manager.theme = subsurfaceTheme.currentTheme - manager.savePreferences() - stackView.pop() - } - } - } ColumnLayout { width: parent.width - Kirigami.Units.gridUnit CloudCredentials { |