From 933dfc402b8a02f947af70fd8ed8c4f4e9f5368c Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Sun, 14 Sep 2025 13:48:12 -0400 Subject: [PATCH] Wifi+BT: added right click --- Modules/Bar/Widgets/Bluetooth.qml | 1 + Modules/Bar/Widgets/WiFi.qml | 1 + Services/AudioService.qml | 2 -- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Bar/Widgets/Bluetooth.qml b/Modules/Bar/Widgets/Bluetooth.qml index 3300c0e..41588bf 100644 --- a/Modules/Bar/Widgets/Bluetooth.qml +++ b/Modules/Bar/Widgets/Bluetooth.qml @@ -22,4 +22,5 @@ NIconButton { icon: Settings.data.network.bluetoothEnabled ? "bluetooth" : "bluetooth-off" tooltipText: "Bluetooth devices." onClicked: PanelService.getPanel("bluetoothPanel")?.toggle(this) + onRightClicked: PanelService.getPanel("bluetoothPanel")?.toggle(this) } diff --git a/Modules/Bar/Widgets/WiFi.qml b/Modules/Bar/Widgets/WiFi.qml index c269d43..74b3e73 100644 --- a/Modules/Bar/Widgets/WiFi.qml +++ b/Modules/Bar/Widgets/WiFi.qml @@ -42,4 +42,5 @@ NIconButton { } tooltipText: "Manage Wi-Fi." onClicked: PanelService.getPanel("wifiPanel")?.toggle(this) + onRightClicked: PanelService.getPanel("wifiPanel")?.toggle(this) } diff --git a/Services/AudioService.qml b/Services/AudioService.qml index 87f4322..8438d03 100644 --- a/Services/AudioService.qml +++ b/Services/AudioService.qml @@ -62,7 +62,6 @@ Singleton { function onMutedChanged() { root._muted = (sink?.audio.muted ?? true) Logger.log("AudioService", "OnMuteChanged:", root._muted) - // Toast: audio output mute toggle ToastService.showNotice("Audio Output", root._muted ? "Muted" : "Unmuted") } } @@ -81,7 +80,6 @@ Singleton { function onMutedChanged() { root._inputMuted = (source?.audio.muted ?? true) Logger.log("AudioService", "OnInputMuteChanged:", root._inputMuted) - // Toast: microphone mute toggle ToastService.showNotice("Microphone", root._inputMuted ? "Muted" : "Unmuted") } }