Files
z-bar-qt/Drawers/Backgrounds.qml
T
Zacharias-Brohn 617122a1c4 popout positioning
2025-11-25 18:16:04 +01:00

23 lines
429 B
QML

import QtQuick
import QtQuick.Shapes
import qs.Modules as Modules
Shape {
id: root
required property Panels panels
required property Item bar
anchors.fill: parent
anchors.margins: 8
anchors.topMargin: bar.implicitHeight
preferredRendererType: Shape.CurveRenderer
Modules.Background {
wrapper: root.panels.popouts
startX: wrapper.x - rounding
startY: wrapper.y
}
}