From 78964344d2e2838c7e7f0d4e6c6382c2f891d68b Mon Sep 17 00:00:00 2001 From: kossLAN Date: Tue, 10 Jun 2025 12:43:13 -0400 Subject: [PATCH] less blur --- shell.qml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/shell.qml b/shell.qml index e04bcf4..6900819 100644 --- a/shell.qml +++ b/shell.qml @@ -62,7 +62,7 @@ ShellRoot { id: backgroundBlur anchors.fill: parent source: blurredBackground - radius: 32 + radius: 16 transparentBorder: true } @@ -77,7 +77,7 @@ ShellRoot { property real scale: 3.0 property variant source: ShaderEffectSource { - sourceItem: backgroundBlur + sourceItem: backgroundBlur hideSource: false live: true } @@ -86,9 +86,9 @@ ShellRoot { // Glass overlay Rectangle { anchors.fill: parent - color: "transparent" + color: Qt.rgba(1,1,1, 0.05) border.width: 1 - border.color: Qt.rgba(1, 1, 1, 0.2) + border.color: Qt.rgba(1, 1, 1, 0.3) radius: 20 Rectangle { @@ -123,6 +123,7 @@ ShellRoot { id: timeSlider from: 0 to: Math.PI * 2 + value: Math.PI Layout.fillWidth: true Layout.preferredHeight: 30 @@ -138,6 +139,7 @@ ShellRoot { id: warpSlider from: 0 to: 10 + value: 3 Layout.fillWidth: true Layout.preferredHeight: 30 @@ -153,6 +155,7 @@ ShellRoot { id: speedSlider from: 0 to: 1 + value: 0.2 Layout.fillWidth: true Layout.preferredHeight: 30