fixed
This commit is contained in:
parent
6c710ba182
commit
5cf6ec0794
1 changed files with 2 additions and 2 deletions
|
|
@ -462,8 +462,8 @@ class StitchingScanner:
|
|||
stop_reason = 'max_dim'
|
||||
break
|
||||
|
||||
if abs(total_x) >= max_mosaic_width:
|
||||
self.log(f"Max dimension reached ({max_mosaic_width}px)")
|
||||
if abs(total_x) >= self.config.max_mosaic_width:
|
||||
self.log(f"Max dimension reached ({self.config.max_mosaic_width}px)")
|
||||
stop_reason = 'max_dim'
|
||||
break
|
||||
# Pulse motor
|
||||
|
|
|
|||
Loading…
Reference in a new issue