fix(Inst.Copy): create FS::copy object inside the secundary thread

Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
flow 2022-12-04 12:29:38 -03:00
parent 79d5beff8d
commit 928939cbe3
No known key found for this signature in database
GPG Key ID: 8D0F221F0A59F469

View File

@ -25,10 +25,10 @@ void InstanceCopyTask::executeTask()
{
setStatus(tr("Copying instance %1").arg(m_origInstance->name()));
FS::copy folderCopy(m_origInstance->instanceRoot(), m_stagingPath);
folderCopy.followSymlinks(false).matcher(m_matcher.get());
m_copyFuture = QtConcurrent::run(QThreadPool::globalInstance(), [this]{
FS::copy folderCopy(m_origInstance->instanceRoot(), m_stagingPath);
folderCopy.followSymlinks(false).matcher(m_matcher.get());
m_copyFuture = QtConcurrent::run(QThreadPool::globalInstance(), [&folderCopy]{
return folderCopy();
});
connect(&m_copyFutureWatcher, &QFutureWatcher<bool>::finished, this, &InstanceCopyTask::copyFinished);