summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-12-08 11:33:03 -0500
committerisanae <14251494+isanae@users.noreply.github.com>2019-12-08 11:33:03 -0500
commitc9049bb07274aaefa79c9751ec40910bf8daf0ca (patch)
tree48aada30a7c0ee4111422a9cfc84275a8f2bbf8d /src/mainwindow.cpp
parent2c59d13be645bb8c12adae883938c9a8652f3dee (diff)
conflicts tab: run exes unhooked by default
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 43d5b820..532d8502 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -5425,7 +5425,8 @@ void MainWindow::runDataFileHooked()
const QFileInfo targetInfo(path);
m_OrganizerCore.processRunner()
- .setFromFile(this, targetInfo, true)
+ .setFromFile(this, targetInfo)
+ .setHooked(true)
.setWaitForCompletion(ProcessRunner::Refresh)
.run();
}