]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/commitdiff
edit: rename var to found_top_left_monitor
authorMathis Raguin <mathis@cri.epita.fr>
Mon, 3 Jun 2019 13:57:44 +0000 (15:57 +0200)
committerPhillip Berndt <phillip.berndt@googlemail.com>
Tue, 31 Dec 2019 10:02:31 +0000 (11:02 +0100)
Signed-off-by: Mathis Raguin <mathis@cri.epita.fr>
autorandr.py

index f05981782002a7a3ab01c9e208eea5060743cfed..13877a3bf60782d68e4c0c0aa61215ffe87e7cc3 100755 (executable)
@@ -717,7 +717,7 @@ def get_fb_dimensions(configuration):
 
 def apply_configuration(new_configuration, current_configuration, dry_run=False):
     "Apply a configuration"
-    found_candidate = False
+    found_top_left_monitor = False
     found_left_monitor = False
     found_top_monitor = False
     outputs = sorted(new_configuration.keys(), key=lambda x: new_configuration[x].sort_key)
@@ -779,10 +779,10 @@ def apply_configuration(new_configuration, current_configuration, dry_run=False)
                                 option_vector = option_vector[:option_index] + option_vector[option_index + 2:]
                         except ValueError:
                             pass
-            if not found_candidate:
+            if not found_top_left_monitor:
                 position = new_configuration[output].options.get("pos", "0x0")
                 if position == "0x0":
-                    found_candidate = True
+                    found_top_left_monitor = True
                     enable_outputs.insert(0, option_vector)
                 elif not found_left_monitor and position.startswith("0x"):
                     found_left_monitor = True
@@ -822,7 +822,7 @@ def apply_configuration(new_configuration, current_configuration, dry_run=False)
 
     # If we did not find a candidate, we might need to inject a call
     # If there is no output to disable, we will enable 0x and x0 at the same time
-    if not found_candidate and len(disable_outputs) > 0:
+    if not found_top_left_monitor and len(disable_outputs) > 0:
         # If the call to 0x and x0 is splitted, inject one of them
         if found_top_monitor and found_left_monitor:
             enable_outputs.insert(0, enable_outputs[0])