From 62262c9c1992dd3daeb5539e5b55786cc568e710 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 18 Sep 2025 11:24:53 +0200 Subject: [PATCH] Test: Force monitors 0,2 (primary+middle) for 2-monitor mode --- rdp_client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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")