1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05:00

dankbar: add width/height deps to binding

This commit is contained in:
bbedward
2025-11-30 01:28:04 -05:00
parent 0b638bf85f
commit c53836040f

View File

@@ -28,9 +28,9 @@ Item {
readonly property real wing: gothEnabled ? barWindow._wingR : 0
readonly property real rt: (barConfig?.squareCorners ?? false) ? 0 : Theme.cornerRadius
readonly property string mainPath: generatePathForPosition()
readonly property string borderFullPath: generateBorderFullPath()
readonly property string borderEdgePath: generateBorderEdgePath()
readonly property string mainPath: { width; height; return generatePathForPosition(); }
readonly property string borderFullPath: { width; height; return generateBorderFullPath(); }
readonly property string borderEdgePath: { width; height; return generateBorderEdgePath(); }
MouseArea {
anchors.fill: parent