Do not consider monitors replicas if one is disabled

This commit is contained in:
Roberto Alsina 2020-02-03 10:11:53 -03:00
parent 22c6e969ce
commit 82e08825aa
1 changed files with 1 additions and 0 deletions

View File

@ -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']
)