Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
5.1.1
-
OS X 10.8.4
-
6bcacdecb8445a5ad9a31f6bdac99cde076e6295
Description
With the following code snippet the value is 0 even after setting it to 0.25.
If the value is set before decimals it will be set correctly.
main.qml
import QtQuick 2.0 import QtQuick.Controls 1.0 SpinBox { //value: 0.25 decimals: 3 value: 0.25 }