Only use a pointing hand if there is something to click on
This commit is contained in:
parent
6f6d962ab9
commit
93b492e9e6
@ -5,6 +5,7 @@ import QtQuick.Controls 2.3
|
|||||||
AbstractButton {
|
AbstractButton {
|
||||||
id: button
|
id: button
|
||||||
|
|
||||||
|
property alias cursor: mouseArea.cursorShape
|
||||||
property string image: undefined
|
property string image: undefined
|
||||||
property color highlightColor: colors.highlight
|
property color highlightColor: colors.highlight
|
||||||
property color buttonTextColor: colors.buttonText
|
property color buttonTextColor: colors.buttonText
|
||||||
|
@ -9,6 +9,7 @@ ImageButton {
|
|||||||
height: 16
|
height: 16
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
changeColorOnHover: (model.state == MtxEvent.Read)
|
changeColorOnHover: (model.state == MtxEvent.Read)
|
||||||
|
cursor: (model.state == MtxEvent.Read) ? Qt.PointingHandCursor : Qt.ArrowCursor
|
||||||
ToolTip.visible: hovered && model.state != MtxEvent.Empty
|
ToolTip.visible: hovered && model.state != MtxEvent.Empty
|
||||||
ToolTip.text: {
|
ToolTip.text: {
|
||||||
switch (model.state) {
|
switch (model.state) {
|
||||||
|
Loading…
Reference in New Issue
Block a user