From 24c0ba77fc623d33190c420c3438a6ebf4f176f8 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:15:37 +1000 Subject: utilities: extend modal scrim fade --- modules/utilities/RecordingDeleteModal.qml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'modules/utilities/RecordingDeleteModal.qml') diff --git a/modules/utilities/RecordingDeleteModal.qml b/modules/utilities/RecordingDeleteModal.qml index f3efe87..b608885 100644 --- a/modules/utilities/RecordingDeleteModal.qml +++ b/modules/utilities/RecordingDeleteModal.qml @@ -52,12 +52,12 @@ Loader { asynchronous: true ShapePath { - startX: -Config.border.rounding + startX: -Config.border.rounding * 2 startY: shape.height - Config.border.thickness strokeWidth: 0 fillGradient: LinearGradient { orientation: LinearGradient.Horizontal - x1: -Config.border.rounding + x1: -Config.border.rounding * 2 GradientStop { position: 0 @@ -69,6 +69,10 @@ Loader { } } + PathLine { + relativeX: Config.border.rounding + relativeY: 0 + } PathArc { relativeY: -Config.border.rounding radiusX: Config.border.rounding @@ -80,7 +84,7 @@ Loader { relativeY: Config.border.rounding + Config.border.thickness } PathLine { - relativeX: -Config.border.rounding + relativeX: -Config.border.rounding * 2 relativeY: 0 } } @@ -90,7 +94,7 @@ Loader { strokeWidth: 0 fillGradient: LinearGradient { orientation: LinearGradient.Vertical - y1: -Config.border.rounding + y1: -Config.border.rounding * 2 GradientStop { position: 0 @@ -109,6 +113,10 @@ Loader { radiusY: Config.border.rounding direction: PathArc.Counterclockwise } + PathLine { + relativeX: 0 + relativeY: -Config.border.rounding + } PathLine { relativeX: Config.border.thickness relativeY: 0 -- cgit v1.2.3-freya