Merge pull request #846

b8da85d Fix IconButton (MaxXor)
pull/2/head
Riccardo Spagni 7 years ago
commit 83ea363932
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

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