mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
50438b0456
commit
a127c4ac63
2 changed files with 8 additions and 8 deletions
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue