mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-22 14:13:57 -06:00
Fix duplicated error message dialog from GUI jobs.
This commit is contained in:
parent
9aac1b6fa5
commit
3135e47180
3 changed files with 28 additions and 7 deletions
|
@ -132,7 +132,8 @@ SLAImportJob::~SLAImportJob() = default;
|
|||
void SLAImportJob::process()
|
||||
{
|
||||
auto progr = [this](int s) {
|
||||
if (s < 100) update_status(int(s), _(L("Importing SLA archive")));
|
||||
if (s < 100)
|
||||
update_status(int(s), _(L("Importing SLA archive")));
|
||||
return !was_canceled();
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue