mirror of https://github.com/KLayout/klayout.git
Using a 'final' progress in the tiling processor to stop child progress objects from showing.
This commit is contained in:
parent
1aa595560e
commit
f03f745ed8
|
|
@ -618,6 +618,9 @@ void
|
|||
TilingProcessorJob::start (const std::string &job_description)
|
||||
{
|
||||
m_progress = tl::RelativeProgress (job_description, tasks (), 1);
|
||||
// prevents child progress objects from showing
|
||||
m_progress.set_final (true);
|
||||
|
||||
tl::JobBase::start ();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue