mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +02:00
specify min/max/stepsize
This commit is contained in:
parent
95c51c2ffa
commit
3a62184afd
1 changed files with 6 additions and 2 deletions
|
@ -568,7 +568,8 @@ Flickable {
|
|||
width: 160
|
||||
suffix: " cm"
|
||||
label: "Arm Circumference"
|
||||
minimumValue: 0
|
||||
minimumValue: 10.0
|
||||
maximumValue: 50.0
|
||||
realStepSize: 1.0
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
realValue: 33.0
|
||||
|
@ -585,6 +586,7 @@ Flickable {
|
|||
label: "Shoulder Width"
|
||||
suffix: " cm"
|
||||
minimumValue: 0
|
||||
maximumValue: 50.0
|
||||
realStepSize: 1.0
|
||||
decimals: 1
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
|
@ -763,8 +765,10 @@ Flickable {
|
|||
anchors.left: parent.left
|
||||
anchors.leftMargin: leftMargin
|
||||
|
||||
minimumValue: 5
|
||||
minimumValue: 0
|
||||
maximumValue: 5
|
||||
realValue: 5
|
||||
realStepSize: 1.0
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
|
||||
onEditingFinished: {
|
||||
|
|
Loading…
Reference in a new issue