add 'terminal=true' support for .qsrun entries

This commit is contained in:
Albert S. 2020-10-05 22:50:53 +02:00
parent 2d14b01c5c
commit 38cc87fbcd
1 changed files with 1 additions and 0 deletions

View File

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