diff options
author | jan Iversen <jani@apache.org> | 2018-09-12 13:40:59 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-12 20:18:32 -0700 |
commit | 51bc41b5179ff12bf2767cd568dbf8266b72ca7e (patch) | |
tree | 1243626fa9ec7a1b7046625e3f24f837441785d6 /mobile-widgets/qml/Settings.qml | |
parent | 504e9125126cb24467ee8e038a461d731672c4b9 (diff) | |
download | subsurface-51bc41b5179ff12bf2767cd568dbf8266b72ca7e.tar.gz |
mobile-widgets: remove setTimeThreshold from system
Use qPrefLocationService::set_time_threshold and remove from
qmlprefs.cpp and qmlmanager.cpp
Remark: mobile UI shows time in minutes, while it is stored (and calculated)
in seconds. Therefore a /60 when reading and *60 when setting.
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'mobile-widgets/qml/Settings.qml')
-rw-r--r-- | mobile-widgets/qml/Settings.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index 22ff97056..68562a871 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -293,11 +293,10 @@ Kirigami.ScrollablePage { Controls.TextField { id: timeThreshold - text: prefs.timeThreshold + text: PrefLocationService.time_threshold / 60 Layout.preferredWidth: gridWidth * 0.25 onEditingFinished: { - prefs.timeThreshold = timeThreshold.text - manager.savePreferences() + PrefLocationService.time_threshold = timeThreshold.text * 60 } } |