diff options
Diffstat (limited to 'modules/bar')
| -rw-r--r-- | modules/bar/popouts/Background.qml | 2 | ||||
| -rw-r--r-- | modules/bar/popouts/Wrapper.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/bar/popouts/Background.qml b/modules/bar/popouts/Background.qml index 6dafaff..2a6d6d2 100644 --- a/modules/bar/popouts/Background.qml +++ b/modules/bar/popouts/Background.qml @@ -34,7 +34,7 @@ ShapePath { } PathLine { relativeX: 0 - relativeY: root.wrapper.height - root.rounding * 4 + relativeY: root.wrapper.height - root.rounding * 2 } PathArc { relativeX: root.invertBottomRounding ? root.roundingX : -root.roundingX diff --git a/modules/bar/popouts/Wrapper.qml b/modules/bar/popouts/Wrapper.qml index 0b6fba8..47b8af2 100644 --- a/modules/bar/popouts/Wrapper.qml +++ b/modules/bar/popouts/Wrapper.qml @@ -11,7 +11,7 @@ Item { visible: width > 0 && height > 0 implicitWidth: content.implicitWidth - implicitHeight: content.implicitHeight + BorderConfig.rounding * 2 + implicitHeight: content.implicitHeight Content { id: content |