mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-19 22:49:29 +02:00
add more precision to attachment scale in attachment dialog
This commit is contained in:
parent
712aff7ad6
commit
962d95ca46
1 changed files with 3 additions and 3 deletions
|
@ -181,10 +181,10 @@ Item {
|
||||||
HifiControls.SpinBox {
|
HifiControls.SpinBox {
|
||||||
id: scaleSpinner;
|
id: scaleSpinner;
|
||||||
anchors { left: parent.left; right: parent.right; bottom: parent.bottom; }
|
anchors { left: parent.left; right: parent.right; bottom: parent.bottom; }
|
||||||
decimals: 1;
|
decimals: 2;
|
||||||
minimumValue: 0.1
|
minimumValue: 0.01
|
||||||
maximumValue: 10
|
maximumValue: 10
|
||||||
stepSize: 0.1;
|
stepSize: 0.05;
|
||||||
value: attachment ? attachment.scale : 1.0
|
value: attachment ? attachment.scale : 1.0
|
||||||
colorScheme: hifi.colorSchemes.dark
|
colorScheme: hifi.colorSchemes.dark
|
||||||
onValueChanged: {
|
onValueChanged: {
|
||||||
|
|
Loading…
Reference in a new issue