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