From 01b893c6e6d67eedd47ded38f439d22f663b0497 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Tue, 18 Nov 2025 00:35:32 +0100 Subject: [PATCH] SimpleToast: follow notification transparency --- Modules/Toast/SimpleToast.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Toast/SimpleToast.qml b/Modules/Toast/SimpleToast.qml index 02eb37d0..d9bd2f06 100644 --- a/Modules/Toast/SimpleToast.qml +++ b/Modules/Toast/SimpleToast.qml @@ -31,7 +31,7 @@ Item { anchors.fill: parent anchors.margins: Style.marginM radius: Style.radiusL - color: Qt.alpha(Color.mSurface, Settings.data.osd.backgroundOpacity || 1.0) + color: Qt.alpha(Color.mSurface, Settings.data.notifications.backgroundOpacity || 1.0) // Colored border based on type border.width: Math.max(2, Style.borderM) @@ -48,7 +48,7 @@ Item { baseColor = Color.mOutline; break; } - return Qt.alpha(baseColor, Settings.data.osd.backgroundOpacity || 1.0) + return Qt.alpha(baseColor, Settings.data.notifications.backgroundOpacity || 1.0) } }