İşlemeleri karşılaştır

..

Ortak bir işleme yok. "1ce3a6c39726ae42e6ca59aca5ee8b232685af7e" ve "2b1fb5b0c2757bfda0503c9ad0d941541dc22cde" tamamen farklı geçmişlere sahip.

2 değiştirilmiş dosya ile 1 ekleme ve 2 silme

Dosyayı Görüntüle

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

Dosyayı Görüntüle

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