summaryrefslogtreecommitdiff
path: root/modules/notifications/Background.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/notifications/Background.qml')
-rw-r--r--modules/notifications/Background.qml4
1 files changed, 2 insertions, 2 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 {