From 5b52ddefdb386aa5f5daea1fcea8417f34dbf4a2 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sat, 25 Oct 2025 10:04:15 -0400 Subject: [PATCH] ui: don't pop up window in response to ADC changes --- lib/logitech_receiver/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logitech_receiver/notifications.py b/lib/logitech_receiver/notifications.py index 5ce5b4c1..976d50d5 100644 --- a/lib/logitech_receiver/notifications.py +++ b/lib/logitech_receiver/notifications.py @@ -280,7 +280,7 @@ def _process_feature_notification(device: Device, notification: HIDPPNotificatio result = hidpp20.decipher_adc_measurement(notification.data) if result: # if good data and the device was not present then a push is needed device.set_battery_info(result[1]) - device.changed(active=True, alert=Alert.ALL, reason=_("ADC measurement notification"), push=not old_present) + device.changed(active=True, alert=Alert.NONE, reason=_("ADC measurement notification"), push=not old_present) else: # this feature is also used to signal device becoming inactive device.present = False # exception to device presence device.changed(active=False)