scan dir
This commit is contained in:
parent
5a1e9b1360
commit
f0cc558b79
1 changed files with 1 additions and 1 deletions
|
|
@ -525,7 +525,7 @@ class StitchingScanner:
|
|||
# stop_reason = 'min_dim'
|
||||
# break
|
||||
|
||||
if self.state.current_x <= 0 and direction == ScanDirection.LEFT:
|
||||
if self.state.current_x >= 0 and direction == ScanDirection.LEFT:
|
||||
self.log(f"Max dimension reached ({self.config.max_mosaic_width}px)")
|
||||
self.log(f"Current X offset ({self.state.current_x}px) total_x ({total_x}px)")
|
||||
stop_reason = 'max_dim'
|
||||
|
|
|
|||
Loading…
Reference in a new issue