From 7bef5c046cfc295a490708f1f7e83767c1ff397b Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Fri, 19 Apr 2024 11:28:58 -0400 Subject: [PATCH] settings: add message about Onboard Profiles to LED Zone settings --- 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 bb39abaa..2890151e 100644 --- a/lib/logitech_receiver/settings_templates.py +++ b/lib/logitech_receiver/settings_templates.py @@ -1584,7 +1584,7 @@ _LEDP = hidpp20.LEDParam class LEDZoneSetting(_Setting): name = "led_zone_" label = _("LED Zone Effects") - description = _("Set effect for LED Zone") + description = _("Set effect for LED Zone") + "\n" + _("May need Onboard Profiles set to Disable to be effective.") feature = _F.COLOR_LED_EFFECTS color_field = {"name": _LEDP.color, "kind": _KIND.choice, "label": None, "choices": colors} speed_field = {"name": _LEDP.speed, "kind": _KIND.range, "label": _("Speed"), "min": 0, "max": 255}