summaryrefslogtreecommitdiff
path: root/components/SpinBox.qml
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@nokia.com>2011-02-17 15:34:38 +0100
committerJens Bache-Wiig <jens.bache-wiig@nokia.com>2011-02-17 15:34:38 +0100
commitab94f73f35131f33f4d030ace9cef218dc0e92ef (patch)
tree05e6ceea2e5e2fc1e99fb82f4ad8447865b59a63 /components/SpinBox.qml
parenta54b91de2293b4d6cf676b633a0999f8ab2f37d2 (diff)
downloadqtquickcontrols-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.qml4
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
}
}
}