Сравнить коммиты

..

Нет общих коммитов. «1ce3a6c39726ae42e6ca59aca5ee8b232685af7e» и «2b1fb5b0c2757bfda0503c9ad0d941541dc22cde» имеют совершенно разные истории.

2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -223,7 +223,6 @@ EntryConfig EntryProvider::readqsrunFile(const QString &path)
}
result.col = map["col"].toInt();
result.row = map["row"].toInt();
result.isTerminalCommand = map["terminal"] == "true";
return result;
}

Просмотреть файл

@ -123,7 +123,7 @@ void Window::executeConfig(const EntryConfig &config)
if(config.isTerminalCommand)
{
QString cmd = settingsProvider->getTerminalCommand();
cmd.replace("%c", config.command + " " + config.arguments.join(' '));
cmd.replace("%c", config.command);
QProcess::startDetached(cmd);
}
else