Merge pull request #846

b8da85d Fix IconButton (MaxXor)
This commit is contained in:
Riccardo Spagni 2017-09-04 17:16:38 +02:00
commit 83ea363932
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -50,23 +50,23 @@ Item {
z: 100 z: 100
} }
// MouseArea { MouseArea {
// id: buttonArea id: buttonArea
// anchors.fill: parent anchors.fill: parent
// onPressed: { onPressed: {
// buttonImage.x = buttonImage.x + 2 buttonImage.x = buttonImage.x + 2
// buttonImage.y = buttonImage.y + 2 buttonImage.y = buttonImage.y + 2
// } }
// onReleased: { onReleased: {
// buttonImage.x = buttonImage.x - 2 buttonImage.x = buttonImage.x - 2
// buttonImage.y = buttonImage.y - 2 buttonImage.y = buttonImage.y - 2
// } }
// onClicked: { onClicked: {
// parent.clicked(mouse) parent.clicked(mouse)
// } }
// } }
} }