diff options
Diffstat (limited to 'src/monitor.py')
-rw-r--r-- | src/monitor.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/monitor.py b/src/monitor.py index 93c6d93..6f28da4 100644 --- a/src/monitor.py +++ b/src/monitor.py @@ -337,14 +337,12 @@ def quartz(*crtcs, screen = 0, display = None): quartz_opened = True if (not quartz_open() == 0): raise Exception("Could not open Quartz connection") - # Convert curves to [0, 0xFFFF] integer lists - (R_curve, G_curve, B_curve) = translate_to_integers() try: # Select all CRTC:s if none have been selected if len(crtcs) == 0: crtcs = range(quartz_crtc_count()) # Apply adjustments - quartz_apply(list(crtcs), R_curve, G_curve, B_curve) + quartz_apply(list(crtcs), r_curve, g_curve, b_curve) except OverflowError: pass # Happens on exit by TERM signal |