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'
|
stop_reason = 'max_dim'
|
||||||
break
|
break
|
||||||
|
|
||||||
if abs(total_x) >= max_mosaic_width:
|
if abs(total_x) >= self.config.max_mosaic_width:
|
||||||
self.log(f"Max dimension reached ({max_mosaic_width}px)")
|
self.log(f"Max dimension reached ({self.config.max_mosaic_width}px)")
|
||||||
stop_reason = 'max_dim'
|
stop_reason = 'max_dim'
|
||||||
break
|
break
|
||||||
# Pulse motor
|
# Pulse motor
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue