From bef5359702c6300fda097f56681e5d2820d62613 Mon Sep 17 00:00:00 2001 From: Robin Seger Date: Tue, 23 Sep 2025 10:04:21 +0200 Subject: audio: audio device changed toasts (#684) * Added toast notifications for audio device changes * rename to toasts * moved into audio service * fixes --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> --- config/UtilitiesConfig.qml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'config/UtilitiesConfig.qml') diff --git a/config/UtilitiesConfig.qml b/config/UtilitiesConfig.qml index d9d4ed5..c1bad2a 100644 --- a/config/UtilitiesConfig.qml +++ b/config/UtilitiesConfig.qml @@ -5,8 +5,14 @@ JsonObject { property int maxToasts: 4 property Sizes sizes: Sizes {} + property Toasts toasts: Toasts {} component Sizes: JsonObject { property int width: 430 } + + component Toasts: JsonObject { + property bool audioOutputChanged: true + property bool audioInputChanged: true + } } -- cgit v1.2.3-freya