diff options
Diffstat (limited to '')
-rw-r--r-- | src/monitor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monitor.py b/src/monitor.py index e94c1e8..fa3d4c5 100644 --- a/src/monitor.py +++ b/src/monitor.py @@ -152,7 +152,7 @@ def randr(*crtcs, screen = 0, display = None): from blueshift_randr import randr_open, randr_apply, randr_close global randr_opened # Select CRTC:s - crtcs = sum([1 << i for i in crtcs]) if len(crtcs) > 0 else ((1 << 64) - 1) + crtcs = list(crtcs) if len(crtcs) > 0 else [-1] # Convert curves to [0, 0xFFFF] integer lists (R_curve, G_curve, B_curve) = translate_to_integers() |