Mobile: Make Gradient Factor Range Consistent with Desktop.

Change the range to be 10 to 150.

Signed-off-by: Michael Keller <github@ike.ch>
This commit is contained in:
Michael Keller 2023-05-26 21:44:13 +12:00 committed by Robert C. Helling
parent 50438b0456
commit a127c4ac63
2 changed files with 8 additions and 8 deletions

View file

@ -227,8 +227,8 @@ TemplatePage {
leftPadding: Kirigami.Units.smallSpacing * 2 leftPadding: Kirigami.Units.smallSpacing * 2
} }
TemplateSpinBox { TemplateSpinBox {
from: 1 from: 10
to: 100 to: 150
stepSize: 1 stepSize: 1
value: Backend.gflow value: Backend.gflow
textFromValue: function (value, locale) { textFromValue: function (value, locale) {
@ -244,8 +244,8 @@ TemplatePage {
leftPadding: Kirigami.Units.smallSpacing * 2 leftPadding: Kirigami.Units.smallSpacing * 2
} }
TemplateSpinBox { TemplateSpinBox {
from: 1 from: 10
to: 100 to: 150
stepSize: 1 stepSize: 1
value: Backend.gfhigh value: Backend.gfhigh
textFromValue: function (value, locale) { textFromValue: function (value, locale) {

View file

@ -632,8 +632,8 @@ TemplatePage {
} }
TemplateSpinBox { TemplateSpinBox {
id: gfLow id: gfLow
from: 1 from: 10
to: 100 to: 150
stepSize: 1 stepSize: 1
value: PrefTechnicalDetails.gflow value: PrefTechnicalDetails.gflow
textFromValue: function (value, locale) { textFromValue: function (value, locale) {
@ -649,8 +649,8 @@ TemplatePage {
} }
TemplateSpinBox { TemplateSpinBox {
id: gfHigh id: gfHigh
from: 1 from: 10
to: 100 to: 150
stepSize: 1 stepSize: 1
value: PrefTechnicalDetails.gfhigh value: PrefTechnicalDetails.gfhigh
textFromValue: function (value, locale) { textFromValue: function (value, locale) {