ui: update label and tooltip for divert-gkeys setting

This commit is contained in:
Peter F. Patel-Schneider 2024-02-10 09:08:51 -05:00
parent 8811374ed9
commit 26e0153fce
1 changed files with 2 additions and 5 deletions

View File

@ -596,11 +596,8 @@ class CrownSmooth(_Setting):
class DivertGkeys(_Setting): class DivertGkeys(_Setting):
name = 'divert-gkeys' name = 'divert-gkeys'
label = _('Divert G Keys') label = _('Divert G and M Keys')
description = ( description = (_('Make G and M keys send HID++ notifications (which can trigger Solaar rules but are otherwise ignored).'))
_('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')
)
feature = _F.GKEY feature = _F.GKEY
validator_options = {'true_value': 0x01, 'false_value': 0x00, 'mask': 0xff} validator_options = {'true_value': 0x01, 'false_value': 0x00, 'mask': 0xff}