Files
Quickbar/Common/HoverMediator.qml

14 lines
282 B
QML

pragma Singleton
import Quickshell
import qs.Common
Singleton {
id: root
property var component: null
property string type: ""
property int x: component ? component.implicitWidth : 0
property int y: component ? (component.implicitHeight + Theme.gaps) : 100
}