From f5e881f0fa3a9155bcf1c69831469ee2c74cd3f3 Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Tue, 4 May 2021 01:43:00 -0500 Subject: [PATCH] bindingprofile: lcdColor is a property, fix it --- g13gui/g13gui/model/bindingprofile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/g13gui/g13gui/model/bindingprofile.py b/g13gui/g13gui/model/bindingprofile.py index 02377c0..64bbe88 100644 --- a/g13gui/g13gui/model/bindingprofile.py +++ b/g13gui/g13gui/model/bindingprofile.py @@ -44,7 +44,8 @@ class BindingProfile(Subject): self.setProperty('lcdColor', (red, green, blue), notify=False) @lcdColor.setter - def lcdColor(self, red, green, blue): + def lcdColor(self, rgb): + (red, green, blue) = rgb self._setLCDColor(red, green, blue) self.notifyChanged()