mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
cleanup
This commit is contained in:
parent
1cf82b7725
commit
5877eeea0b
1 changed files with 2 additions and 10 deletions
|
@ -45,15 +45,8 @@ SpinBox {
|
|||
|
||||
locale: Qt.locale("en_US")
|
||||
|
||||
onValueModified: {
|
||||
realValue = value/factor
|
||||
console.warn("rv (value mod)", realValue)
|
||||
}
|
||||
|
||||
onValueChanged: {
|
||||
realValue = value/factor
|
||||
console.warn("rv (value)", realValue)
|
||||
}
|
||||
onValueModified: realValue = value/factor
|
||||
onValueChanged: realValue = value/factor
|
||||
|
||||
stepSize: realStepSize*factor
|
||||
value: realValue*factor
|
||||
|
@ -85,7 +78,6 @@ SpinBox {
|
|||
}
|
||||
|
||||
valueFromText: function(text, locale) {
|
||||
console.warn("valueFromText", text)
|
||||
return Number.fromLocaleString(locale, text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue