From 97fb7bf0bea653f412694e30c6c81647f33f97d9 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sun, 23 Nov 2025 14:28:49 +0100 Subject: [PATCH] Fix toasts --- Modules/Toast/ToastScreen.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Modules/Toast/ToastScreen.qml b/Modules/Toast/ToastScreen.qml index 94880c6d..f19ded58 100644 --- a/Modules/Toast/ToastScreen.qml +++ b/Modules/Toast/ToastScreen.qml @@ -134,7 +134,11 @@ Item { screen: root.screen // Parse location setting - readonly property string location: Settings.data.notifications?.location || "top_right" + readonly property string location: { + if (Settings.data.notifications?.location == "bar") + return "top_right" + return Settings.data.notifications?.location || "top_right" + } readonly property bool isTop: location.startsWith("top") readonly property bool isBottom: location.startsWith("bottom") readonly property bool isLeft: location.endsWith("_left")