diff --git a/src/qml/Desktop/DesktopPlayerControls.qml b/src/qml/Desktop/DesktopPlayerControls.qml index 0d33bac9..22a76031 100644 --- a/src/qml/Desktop/DesktopPlayerControls.qml +++ b/src/qml/Desktop/DesktopPlayerControls.qml @@ -100,7 +100,8 @@ FocusScope { visible: headerBar.handlePosition === 0 MouseArea { anchors.fill: parent - cursorShape: Qt.PointingHandCursor + cursorShape: AudioManager.entry ? Qt.PointingHandCursor : Qt.ArrowCursor + enabled: AudioManager.entry onClicked: { headerBar.openFullScreenImage(); } diff --git a/src/qml/Desktop/HeaderBar.qml b/src/qml/Desktop/HeaderBar.qml index 5a66f08d..bac6ff28 100644 --- a/src/qml/Desktop/HeaderBar.qml +++ b/src/qml/Desktop/HeaderBar.qml @@ -143,7 +143,8 @@ FocusScope { MouseArea { anchors.fill: parent - cursorShape: Qt.PointingHandCursor + cursorShape: AudioManager.entry ? Qt.PointingHandCursor : Qt.ArrowCursor + enabled: AudioManager.entry onClicked: { openFullScreenImage(); }