From 7e6ceb988a6fb372bccf734ebfcb472abe875555 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sat, 5 Mar 2022 14:40:52 -0500 Subject: [PATCH] settings: add missing choices for backlight setting --- lib/logitech_receiver/settings_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logitech_receiver/settings_templates.py b/lib/logitech_receiver/settings_templates.py index 88055acc..4cbbd6f8 100644 --- a/lib/logitech_receiver/settings_templates.py +++ b/lib/logitech_receiver/settings_templates.py @@ -203,7 +203,7 @@ class Backlight(_Setting): label = _('Backlight') description = _('Set illumination time for keyboard.') 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_options = {'choices': choices_universe}