diff options
Diffstat (limited to 'modules/drawers/Border.qml')
| -rw-r--r-- | modules/drawers/Border.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/drawers/Border.qml b/modules/drawers/Border.qml index 64fd7f9..9014d07 100644 --- a/modules/drawers/Border.qml +++ b/modules/drawers/Border.qml @@ -8,6 +8,8 @@ import QtQuick.Effects Item { id: root + required property Item bar + anchors.fill: parent StyledRect { @@ -28,6 +30,7 @@ Item { Rectangle { anchors.fill: parent anchors.margins: BorderConfig.thickness + anchors.leftMargin: root.bar.implicitWidth radius: BorderConfig.rounding } } |