Merge pull request #925 from KLayout/issue-920

Fixed #920 (fill border parameter sign issue)
This commit is contained in:
Matthias Köfferlein 2021-10-20 22:27:09 +02:00 committed by GitHub
commit 01d7600b87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ FillDialog::generate_fill (const FillParameters &fp)
// preprocess fill regions
if (distance_x != 0 || distance_y != 0) {
fill_region.size (distance_x, distance_y);
fill_region.size (-distance_x, -distance_y);
} else {
fill_region.merge ();
}