diff options
Diffstat (limited to 'modules/notifications')
| -rw-r--r-- | modules/notifications/Background.qml | 4 | ||||
| -rw-r--r-- | modules/notifications/Wrapper.qml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/notifications/Background.qml b/modules/notifications/Background.qml index ea9e3a1..2fd05f8 100644 --- a/modules/notifications/Background.qml +++ b/modules/notifications/Background.qml @@ -17,7 +17,7 @@ ShapePath { fillColor: BorderConfig.colour PathLine { - relativeX: -root.wrapper.width + relativeX: -(root.wrapper.width + root.rounding) relativeY: 0 } PathArc { @@ -38,7 +38,7 @@ ShapePath { direction: root.fullHeightRounding < 0 ? PathArc.Clockwise : PathArc.Counterclockwise } PathLine { - relativeX: root.wrapper.height > 0 ? root.wrapper.width - root.rounding * 2 - root.fullHeightRounding : root.wrapper.width + relativeX: root.wrapper.height > 0 ? root.wrapper.width - root.rounding - root.fullHeightRounding : root.wrapper.width relativeY: 0 } PathArc { diff --git a/modules/notifications/Wrapper.qml b/modules/notifications/Wrapper.qml index a3a2631..27b9219 100644 --- a/modules/notifications/Wrapper.qml +++ b/modules/notifications/Wrapper.qml @@ -6,7 +6,7 @@ Item { visible: height > 0 implicitHeight: content.implicitHeight - implicitWidth: content.implicitWidth + BorderConfig.rounding + implicitWidth: content.implicitWidth Content { id: content |