Only use a pointing hand if there is something to click on

This commit is contained in:
Loren Burkholder 2021-01-16 19:55:50 -05:00
parent 6f6d962ab9
commit 93b492e9e6
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import QtQuick.Controls 2.3
AbstractButton {
id: button
property alias cursor: mouseArea.cursorShape
property string image: undefined
property color highlightColor: colors.highlight
property color buttonTextColor: colors.buttonText

View File

@ -9,6 +9,7 @@ ImageButton {
height: 16
hoverEnabled: true
changeColorOnHover: (model.state == MtxEvent.Read)
cursor: (model.state == MtxEvent.Read) ? Qt.PointingHandCursor : Qt.ArrowCursor
ToolTip.visible: hovered && model.state != MtxEvent.Empty
ToolTip.text: {
switch (model.state) {