summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikaƫl Capelle <capelle.mikael@gmail.com>2021-01-29 08:47:46 +0100
committerGitHub <noreply@github.com>2021-01-29 08:47:46 +0100
commit136dc17e011deda53f6e82e6c8b23ee701be3158 (patch)
tree2a12e5268147a932ed3cbc42db6ed7539f82ccb7
parent41159e4eea0c79670d15b2707f4e6d7c86bb2d65 (diff)
parent007824dde8afa5ada2e066280623a1e72a211663 (diff)
Merge pull request #1385 from Holt59/fix-mo2-on-top
Do not bring MO2 to front when passing a Nexus link to the CL.
-rw-r--r--src/moapplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/moapplication.cpp b/src/moapplication.cpp
index 91cac2b1..19b43d77 100644
--- a/src/moapplication.cpp
+++ b/src/moapplication.cpp
@@ -398,7 +398,7 @@ void MOApplication::externalMessage(const QString& message)
.run();
}
} else if (isNxmLink(message)) {
- MessageDialog::showMessage(tr("Download started"), qApp->activeWindow());
+ MessageDialog::showMessage(tr("Download started"), qApp->activeWindow(), false);
m_core->downloadRequestedNXM(message);
} else {
cl::CommandLine cl;