1
mirror of https://github.com/monero-project/monero-gui synced 2024-11-22 12:14:00 +01:00

Fix IconButton

This commit is contained in:
MaxXor 2017-08-31 14:44:44 +02:00
parent c68c317776
commit b8da85d0a4

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)
// } }
// } }
} }