summaryrefslogtreecommitdiff
path: root/modules/drawers/Interactions.qml
blob: 5006a96f7d5e1cc161c94f55d17c5175951e901a (plain)
1
2
3
4
5
6
7
8
9
10
11
import "root:/services"
import Quickshell
import QtQuick

MouseArea {
    required property ShellScreen screen

    anchors.fill: parent
    hoverEnabled: true
    onPositionChanged: event => Drawers.setPosForScreen(screen, event.x, event.y)
}