From a127c4ac63869b753f2912cc3903b0ef68f96ba8 Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Fri, 26 May 2023 21:44:13 +1200 Subject: [PATCH] Mobile: Make Gradient Factor Range Consistent with Desktop. Change the range to be 10 to 150. Signed-off-by: Michael Keller --- mobile-widgets/qml/DivePlannerSetup.qml | 8 ++++---- mobile-widgets/qml/Settings.qml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mobile-widgets/qml/DivePlannerSetup.qml b/mobile-widgets/qml/DivePlannerSetup.qml index 4b56625fc..814ede317 100644 --- a/mobile-widgets/qml/DivePlannerSetup.qml +++ b/mobile-widgets/qml/DivePlannerSetup.qml @@ -227,8 +227,8 @@ TemplatePage { leftPadding: Kirigami.Units.smallSpacing * 2 } TemplateSpinBox { - from: 1 - to: 100 + from: 10 + to: 150 stepSize: 1 value: Backend.gflow textFromValue: function (value, locale) { @@ -244,8 +244,8 @@ TemplatePage { leftPadding: Kirigami.Units.smallSpacing * 2 } TemplateSpinBox { - from: 1 - to: 100 + from: 10 + to: 150 stepSize: 1 value: Backend.gfhigh textFromValue: function (value, locale) { diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index d6c2d5ebb..5310da1b0 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -632,8 +632,8 @@ TemplatePage { } TemplateSpinBox { id: gfLow - from: 1 - to: 100 + from: 10 + to: 150 stepSize: 1 value: PrefTechnicalDetails.gflow textFromValue: function (value, locale) { @@ -649,8 +649,8 @@ TemplatePage { } TemplateSpinBox { id: gfHigh - from: 1 - to: 100 + from: 10 + to: 150 stepSize: 1 value: PrefTechnicalDetails.gfhigh textFromValue: function (value, locale) {