add 'terminal=true' support for .qsrun entries

This commit is contained in:
Albert S. 2020-10-05 22:50:53 +02:00
γονέας 2d14b01c5c
υποβολή 38cc87fbcd
1 αρχεία άλλαξαν με 1 προσθήκες και 0 διαγραφές

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