From 82e08825aa9ae0f6658587c058a9d24107388f08 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Mon, 3 Feb 2020 10:11:53 -0300 Subject: [PATCH] Do not consider monitors replicas if one is disabled --- xrandroll/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/xrandroll/main.py b/xrandroll/main.py index 058274d..48aa37a 100644 --- a/xrandroll/main.py +++ b/xrandroll/main.py @@ -80,6 +80,7 @@ def is_replica_of(a, b): and a["pos_y"] == b["pos_y"] and a["res_x"] == b["res_x"] and a["res_y"] == b["res_y"] + and b['enabled'] )