From 7a65c40312df63614f8352c07a3ca2b3b35134a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius?= Date: Mon, 31 Aug 2020 10:09:34 -0300 Subject: [PATCH] ui: removed GESTURE2 specs from the panel --- lib/solaar/ui/window.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/solaar/ui/window.py b/lib/solaar/ui/window.py index a7ca23d2..7d9de7f2 100644 --- a/lib/solaar/ui/window.py +++ b/lib/solaar/ui/window.py @@ -559,13 +559,6 @@ def _update_details(button): flag_names = ('(%s)' % _('none'), ) if flag_bits == 0 else _hidpp10.NOTIFICATION_FLAG.flag_names(flag_bits) yield (_('Notifications'), ('\n%15s' % ' ').join(flag_names)) - if hasattr(device, 'gestures'): - specs = device.gestures.specs - if specs: - yield ('Gesture specs', '') - for s in specs.values(): - yield (' %s' % s.spec, s.value) - def _set_details(text): _details._text.set_markup(text)