mirror of
https://github.com/overte-org/overte.git
synced 2025-04-11 13:42:38 +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 {
|
||||
id: scaleSpinner;
|
||||
anchors { left: parent.left; right: parent.right; bottom: parent.bottom; }
|
||||
decimals: 1;
|
||||
minimumValue: 0.1
|
||||
decimals: 2;
|
||||
minimumValue: 0.01
|
||||
maximumValue: 10
|
||||
stepSize: 0.1;
|
||||
stepSize: 0.05;
|
||||
value: attachment ? attachment.scale : 1.0
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
onValueChanged: {
|
||||
|
|
Loading…
Reference in a new issue