Vertaa committeja

..

No commits in common. "1ce3a6c39726ae42e6ca59aca5ee8b232685af7e" and "2b1fb5b0c2757bfda0503c9ad0d941541dc22cde" have entirely different histories.

2 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa

Näytä tiedosto

@ -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;
}

Näytä tiedosto

@ -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