Enable URDE logging by default

This commit is contained in:
Luke Street 2020-04-14 02:52:36 -04:00
parent d3d543dadc
commit d62a47d423
1 changed files with 1 additions and 0 deletions

View File

@ -211,6 +211,7 @@ void MainWindow::onLaunch() {
connect(&m_heclProc, qOverload<int, QProcess::ExitStatus>(&QProcess::finished), this, &MainWindow::onLaunchFinished);
const auto heclProcArguments = QStringList{m_path + QStringLiteral("/out")}
<< QStringLiteral("-l")
<< m_settings.value(QStringLiteral("urde_arguments"))
.toStringList()
.join(QLatin1Char{' '})