From 031d502e3746ad20f967fe1893b08f46fe9c124e Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Mon, 1 Dec 2025 12:08:25 +0100 Subject: [PATCH] Fix tests/test_graphical_camera_settings.py --- tests/test_graphical_camera_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_graphical_camera_settings.py b/tests/test_graphical_camera_settings.py index ab75afac..9ccd7955 100644 --- a/tests/test_graphical_camera_settings.py +++ b/tests/test_graphical_camera_settings.py @@ -113,7 +113,7 @@ class TestGraphicalCameraSettings(unittest.TestCase): # On a 320x240 screen, this is approximately x=260, y=90 # We'll click slightly inside the button to ensure we hit it settings_x = 300 # Right side of screen, inside the 60px button - settings_y = 60 # 60px down from top, center of 60px button + settings_y = 100 # 60px down from top, center of 60px button print(f"\nClicking settings button at ({settings_x}, {settings_y})") simulate_click(settings_x, settings_y, press_duration_ms=100)