diff options
author | Jens Bache-Wiig <jens.bache-wiig@nokia.com> | 2011-02-17 15:34:38 +0100 |
---|---|---|
committer | Jens Bache-Wiig <jens.bache-wiig@nokia.com> | 2011-02-17 15:34:38 +0100 |
commit | ab94f73f35131f33f4d030ace9cef218dc0e92ef (patch) | |
tree | 05e6ceea2e5e2fc1e99fb82f4ad8447865b59a63 /components/SpinBox.qml | |
parent | a54b91de2293b4d6cf676b633a0999f8ab2f37d2 (diff) | |
download | qtquickcontrols-ab94f73f35131f33f4d030ace9cef218dc0e92ef.tar.gz |
Don't override bindings on SpinBox.
- This removes some simplicity but since it breaks
any bindings you make on the arrow buttons, it has
to be solved in a different way than this.
Diffstat (limited to 'components/SpinBox.qml')
-rw-r--r-- | components/SpinBox.qml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/components/SpinBox.qml b/components/SpinBox.qml index aa645f36..1566a8e7 100644 --- a/components/SpinBox.qml +++ b/components/SpinBox.qml @@ -115,8 +115,6 @@ Item { onLoaded: { item.parent = spinbox mouseUp.parent = item - item.x = spinbox.width-item.width - item.y = 0 } } @@ -139,8 +137,6 @@ Item { onLoaded: { item.parent = spinbox mouseDown.parent = item - item.x = spinbox.width-item.width - item.y = spinbox.height - item.height } } } |