mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 04:53:25 +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
|
width: 160
|
||||||
suffix: " cm"
|
suffix: " cm"
|
||||||
label: "Arm Circumference"
|
label: "Arm Circumference"
|
||||||
minimumValue: 0
|
minimumValue: 10.0
|
||||||
|
maximumValue: 50.0
|
||||||
realStepSize: 1.0
|
realStepSize: 1.0
|
||||||
colorScheme: hifi.colorSchemes.dark
|
colorScheme: hifi.colorSchemes.dark
|
||||||
realValue: 33.0
|
realValue: 33.0
|
||||||
|
@ -585,6 +586,7 @@ Flickable {
|
||||||
label: "Shoulder Width"
|
label: "Shoulder Width"
|
||||||
suffix: " cm"
|
suffix: " cm"
|
||||||
minimumValue: 0
|
minimumValue: 0
|
||||||
|
maximumValue: 50.0
|
||||||
realStepSize: 1.0
|
realStepSize: 1.0
|
||||||
decimals: 1
|
decimals: 1
|
||||||
colorScheme: hifi.colorSchemes.dark
|
colorScheme: hifi.colorSchemes.dark
|
||||||
|
@ -763,8 +765,10 @@ Flickable {
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: leftMargin
|
anchors.leftMargin: leftMargin
|
||||||
|
|
||||||
minimumValue: 5
|
minimumValue: 0
|
||||||
|
maximumValue: 5
|
||||||
realValue: 5
|
realValue: 5
|
||||||
|
realStepSize: 1.0
|
||||||
colorScheme: hifi.colorSchemes.dark
|
colorScheme: hifi.colorSchemes.dark
|
||||||
|
|
||||||
onEditingFinished: {
|
onEditingFinished: {
|
||||||
|
|
Loading…
Reference in a new issue