Merge pull request #2113 from KLayout/bugfix/issue-2112

Bugfix/issue 2112
This commit is contained in:
Matthias Köfferlein 2025-08-15 14:19:45 +02:00 committed by GitHub
commit d41201ebc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 3 additions and 3 deletions

View File

@ -5950,10 +5950,10 @@ CODE
bx = 0.0
by = 0.0
else
bx = [ fc_box.width, row_step.x ].max
by = [ fc_box.height, column_step.y ].max
bx = [ fc_box.width, row_step.x.abs + column_step.x.abs ].max + [ -fill_margin.x, 0 ].max
by = [ fc_box.height, row_step.y.abs + column_step.y.abs ].max + [ -fill_margin.y, 0 ].max
end
tp.tile_border(bx, by)
tp.tile_border(@engine.dbu * bx, @engine.dbu * by)
tp.threads = (@engine.threads || 1)
result_arg = "nil"

Binary file not shown.

Binary file not shown.

Binary file not shown.