mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 08:23:50 -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):
|
def _updateLcdColor(self):
|
||||||
lcdColor = self._prefs.selectedProfile().lcdColor
|
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)
|
self.setBacklightColor(*lcdColor)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
Loading…
Reference in New Issue
Block a user