From bd17a644875b861700ac77edf8fa0e10850ac852 Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 27 Feb 2017 23:31:08 +0000 Subject: [PATCH] Fix a typo in launcher console handling. --- src/GUI/QtLauncher.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/QtLauncher.cxx b/src/GUI/QtLauncher.cxx index 7d9404e7a..085ba9875 100644 --- a/src/GUI/QtLauncher.cxx +++ b/src/GUI/QtLauncher.cxx @@ -1221,7 +1221,7 @@ void QtLauncher::onRun() if (a.arg.startsWith("prop:")) { QString v = a.arg.mid(5) + "=" + a.value; opt->addOption("prop", v.toStdString()); - } else if (a.arg == "--console") { + } else if (a.arg == "console") { // this option is handled very early, in normal startup. If the user // requests it via the launcher, parseOptions never sees it, so // achieve the same result manually.