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
}
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) {

View file

@ -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) {