summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp2
-rw-r--r--src/organizercore.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index c2d91bcc..631a31d8 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -5404,7 +5404,7 @@ void MainWindow::openDataFile()
m_OrganizerCore.processRunner()
.setFromFile(this, targetInfo)
- .setWaitForCompletion()
+ .setWaitForCompletion(ProcessRunner::Refresh)
.run();
}
diff --git a/src/organizercore.cpp b/src/organizercore.cpp
index 96ae84a8..3c535868 100644
--- a/src/organizercore.cpp
+++ b/src/organizercore.cpp
@@ -357,7 +357,7 @@ void OrganizerCore::externalMessage(const QString &message)
if(moshortcut.hasExecutable()) {
processRunner()
.setFromShortcut(moshortcut)
- .setWaitForCompletion()
+ .setWaitForCompletion(ProcessRunner::Refresh)
.run();
}
}