mirror of https://github.com/KLayout/klayout.git
Bugfix: show XOR progress after the particular job is done.
This commit is contained in:
parent
43325cb861
commit
f989b961c1
|
|
@ -18,6 +18,9 @@
|
|||
In some cases, DXF cell instances did not trigger bounding
|
||||
box update and the cells only got visible after save and
|
||||
load.
|
||||
* Bugfix: XOR progress is more realistic
|
||||
The progress is updated after the layer has been computed,
|
||||
not before.
|
||||
* Bugfix: https://github.com/klayoutmatthias/klayout/issues/117
|
||||
DTrans#itype was broken.
|
||||
* Bugfix: https://github.com/klayoutmatthias/klayout/issues/116
|
||||
|
|
|
|||
|
|
@ -663,8 +663,6 @@ XORWorker::do_perform (const XORTask *xor_task)
|
|||
unsigned int tol_index = 0;
|
||||
for (std::vector <db::Coord>::const_iterator t = mp_job->tolerances ().begin (); t != mp_job->tolerances ().end (); ++t, ++tol_index) {
|
||||
|
||||
mp_job->next_progress ();
|
||||
|
||||
const std::vector<unsigned int> &la = xor_task->la ();
|
||||
const std::vector<unsigned int> &lb = xor_task->lb ();
|
||||
|
||||
|
|
@ -869,6 +867,8 @@ XORWorker::do_perform (const XORTask *xor_task)
|
|||
|
||||
}
|
||||
|
||||
mp_job->next_progress ();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue