mirror of https://github.com/KLayout/klayout.git
Fixed DXF display issue (see https://www.klayout.de/forum/comments.php?DiscussionID=1053)
This commit is contained in:
parent
256de9bc84
commit
4acc336d69
|
|
@ -120,7 +120,10 @@ Shapes::operator= (const Shapes &d)
|
|||
{
|
||||
if (&d != this) {
|
||||
clear ();
|
||||
do_insert (d);
|
||||
if (! d.empty()) {
|
||||
invalidate_state ();
|
||||
do_insert (d);
|
||||
}
|
||||
}
|
||||
|
||||
return *this;
|
||||
|
|
|
|||
Loading…
Reference in New Issue