From 26e0153fceef8d793218d4ce19b23a9518e7b642 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sat, 10 Feb 2024 09:08:51 -0500 Subject: [PATCH] ui: update label and tooltip for divert-gkeys setting --- lib/logitech_receiver/settings_templates.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/logitech_receiver/settings_templates.py b/lib/logitech_receiver/settings_templates.py index 39b76c1d..f38ebb43 100644 --- a/lib/logitech_receiver/settings_templates.py +++ b/lib/logitech_receiver/settings_templates.py @@ -596,11 +596,8 @@ class CrownSmooth(_Setting): class DivertGkeys(_Setting): name = 'divert-gkeys' - label = _('Divert G Keys') - description = ( - _('Make G keys send GKEY HID++ notifications (which trigger Solaar rules but are otherwise ignored).') + '\n' + - _('May also make M keys and MR key send HID++ notifications') - ) + label = _('Divert G and M Keys') + description = (_('Make G and M keys send HID++ notifications (which can trigger Solaar rules but are otherwise ignored).')) feature = _F.GKEY validator_options = {'true_value': 0x01, 'false_value': 0x00, 'mask': 0xff}