8 lines
343 B
QML
8 lines
343 B
QML
// PointingHandInteraction.qml from end-4 https://github.com/end-4/dots-hyprland/blob/eac4ab3e3c249008d9596023f79dbc2d31012600/.config/quickshell/ii/modules/common/widgets/PointingHandInteraction.qml
|
|
import QtQuick
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onPressed: (mouse) => mouse.accepted = false
|
|
cursorShape: Qt.PointingHandCursor
|
|
} |