mirror of https://github.com/KLayout/klayout.git
Fixed #920 (fill border parameter sign issue)
This commit is contained in:
parent
8b12788084
commit
17a6459f83
|
|
@ -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 ();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue