From a838deb9e22d7bc4467c1efd589c488f957dc6b5 Mon Sep 17 00:00:00 2001 From: 2ManyProjects Date: Sat, 10 Jan 2026 00:37:40 -0600 Subject: [PATCH] Fixed left x offset --- src/stitching_scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stitching_scanner.py b/src/stitching_scanner.py index e49daf4..32a4f2b 100644 --- a/src/stitching_scanner.py +++ b/src/stitching_scanner.py @@ -756,7 +756,7 @@ class StitchingScanner: # Done when we've moved enough if abs(total_y) >= target_displacement: self.log(f"Row transition complete: {abs(total_y):.1f}px") - self.state.current_y = 0 + self.state.current_y -= self.state.mosaic_init_width self.motion.send_command('s') time.sleep(self.config.settle_time)