diff --git a/rdp_client.py b/rdp_client.py index 0f48161..e43e1dc 100755 --- a/rdp_client.py +++ b/rdp_client.py @@ -327,10 +327,10 @@ class RDPClient: # For debugging, log the monitor layout self.logger.info(f"Monitor layout detected: {[(m[0], m[1], 'primary' if m[2] else 'secondary') for m in monitors]}") - # TEST: Use monitors 0,1 instead of 1,2 + # TEST: Use monitors 0,2 instead of 1,2 if count == 2: - selected_str = "0,1" - self.logger.info(f"TEST: Forcing selection of monitors 0,1 for testing") + selected_str = "0,2" + self.logger.info(f"TEST: Forcing selection of monitors 0,2 for testing") elif count == 3: selected_str = "0,1,2" self.logger.info(f"TEST: Using all monitors 0,1,2")