logitech_receiver: rename old DPI setting

This commit is contained in:
Vinícius 2022-01-17 14:23:47 -03:00 committed by Peter F. Patel-Schneider
parent 29ff5e5924
commit ec9f1a94ea
1 changed files with 2 additions and 2 deletions

View File

@ -167,8 +167,8 @@ class RegisterSideScroll(_Setting):
# different devices have different sets of permissable dpis, so this should be subclassed
class RegisterDpi(_Setting):
name = 'dpi'
label = _('Sensitivity (DPI)')
name = 'dpi-old'
label = _('Sensitivity (DPI - older mice)')
description = _('Mouse movement sensitivity')
register = _R.mouse_dpi
choices_universe = _NamedInts.range(0x81, 0x8F, lambda x: str((x - 0x80) * 100))