diff --git a/lib/solaar/gtk.py b/lib/solaar/gtk.py index 3a62491d..c29330f4 100644 --- a/lib/solaar/gtk.py +++ b/lib/solaar/gtk.py @@ -83,14 +83,14 @@ def _run(args): # if l is not None: # l.stop() - print ("****", action, device, listeners) + # print ("****", action, device, listeners) # callback delivering status notifications from the receiver/devices to the UI from gi.repository import GLib from logitech.unifying_receiver.status import ALERT def status_changed(device, alert=ALERT.NONE, reason=None): assert device is not None - print ("status changed", device, reason) + # print ("status changed", device, reason) GLib.idle_add(ui.status_icon.update, icon, device) GLib.idle_add(ui.main_window.update, device, alert & ALERT.SHOW_WINDOW) diff --git a/lib/solaar/ui/main_window.py b/lib/solaar/ui/main_window.py index 084c2356..4392beb1 100644 --- a/lib/solaar/ui/main_window.py +++ b/lib/solaar/ui/main_window.py @@ -425,7 +425,7 @@ def _update_device_box(frame, dev): def update(device, popup=False): assert device is not None - print ("main_window.update", device) + # print ("main_window.update", device) receiver = device if device.kind is None else device.receiver w = _windows.get(receiver.path)