This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
qcookieclicker/qml/components/GameButton.qml

23 lines
313 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.4
Button {
id: control
property string imageSrc: ""
width: height
scale: pressed ? 0.8:1
background: Image {
source: control.imageSrc
}
Behavior on scale {
NumberAnimation {
duration: 100
}
}
}