mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 00:14:09 -04:00
Adjust reduce red component of LCD color
This commit is contained in:
parent
50aa9bd115
commit
ac7eaae41f
@ -106,7 +106,7 @@ class DeviceManager(threading.Thread, Observer):
|
||||
|
||||
def _updateLcdColor(self):
|
||||
lcdColor = self._prefs.selectedProfile().lcdColor
|
||||
lcdColor = [int(x * 255) for x in lcdColor]
|
||||
lcdColor = [lcdColor[0] * 190, lcdColor[1] * 255, lcdColor[2] * 255]
|
||||
self.setBacklightColor(*lcdColor)
|
||||
|
||||
@property
|
||||
|
Loading…
Reference in New Issue
Block a user