summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 7d3d20b3..63f6c680 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -5422,7 +5422,11 @@ void MainWindow::openDataFile()
const QString path = m_ContextItem->data(0, Qt::UserRole).toString();
const QFileInfo targetInfo(path);
- m_OrganizerCore.processRunner().runFile(this, targetInfo);
+
+ m_OrganizerCore.processRunner()
+ .setFromFile(this, targetInfo)
+ .setWaitForCompletion(ProcessRunner::NoRefresh)
+ .run();
}
void MainWindow::openDataOriginExplorer_clicked()