add 'terminal=true' support for .qsrun entries

Tento commit je obsažen v:
Albert S. 2020-10-05 22:50:53 +02:00
rodič 2b1fb5b0c2
revize 0183ad58b8

Zobrazit soubor

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