aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/haskell/haskellmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/haskell/haskellmanager.cpp')
-rw-r--r--plugins/haskell/haskellmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/haskell/haskellmanager.cpp b/plugins/haskell/haskellmanager.cpp
index 5c9ab1d..5b719ba 100644
--- a/plugins/haskell/haskellmanager.cpp
+++ b/plugins/haskell/haskellmanager.cpp
@@ -109,7 +109,7 @@ void HaskellManager::openGhci(const FilePath &haskellFile)
p->setCommand({stackExecutable(), args});
p->setWorkingDirectory(haskellFile.toFileInfo().path());
connect(p, &ConsoleProcess::processError, p, [p](const QString &errorString) {
- Core::MessageManager::write(tr("Failed to run GHCi: \"%1\".").arg(errorString));
+ Core::MessageManager::writeDisrupting(tr("Failed to run GHCi: \"%1\".").arg(errorString));
p->deleteLater();
});
connect(p, &ConsoleProcess::stubStopped, p, &QObject::deleteLater);