settings: add missing choices for backlight setting

This commit is contained in:
Peter F. Patel-Schneider 2022-03-05 14:40:52 -05:00
parent a034a0ea10
commit 7e6ceb988a
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ class Backlight(_Setting):
label = _('Backlight') label = _('Backlight')
description = _('Set illumination time for keyboard.') description = _('Set illumination time for keyboard.')
feature = _F.BACKLIGHT feature = _F.BACKLIGHT
choices_universe = _NamedInts(Off=0, Short=5, Medium=20, Long=60, VeryLong=180) choices_universe = _NamedInts(Off=0, Varying=2, VeryShort=5, Short=10, Medium=20, Long=60, VeryLong=180)
validator_class = _ChoicesV validator_class = _ChoicesV
validator_options = {'choices': choices_universe} validator_options = {'choices': choices_universe}