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()