NOISSUE only show pack import warnings when there are some
This commit is contained in:
parent
4340068a84
commit
7cd13302c5
@ -1243,7 +1243,11 @@ void MainWindow::runModalTask(Task *task)
|
|||||||
});
|
});
|
||||||
connect(task, &Task::succeeded, [this, task]()
|
connect(task, &Task::succeeded, [this, task]()
|
||||||
{
|
{
|
||||||
CustomMessageBox::selectable(this, tr("Warnings"), task->warnings().join('\n'), QMessageBox::Warning)->show();
|
QStringList warnings = task->warnings();
|
||||||
|
if(warnings.count())
|
||||||
|
{
|
||||||
|
CustomMessageBox::selectable(this, tr("Warnings"), warnings.join('\n'), QMessageBox::Warning)->show();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
ProgressDialog loadDialog(this);
|
ProgressDialog loadDialog(this);
|
||||||
loadDialog.setSkipButton(true, tr("Abort"));
|
loadDialog.setSkipButton(true, tr("Abort"));
|
||||||
|
Loading…
Reference in New Issue
Block a user