nosignal-shell/modules/drawers/Interactions.qml
2 * r + 2 * t 23482ac1f7 refactor: split drawers
Split off interactions into new file
Also fix hover osd
2025-05-08 13:45:08 +10:00

11 lines
244 B
QML

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)
}