add 'terminal=true' support for .qsrun entries

このコミットが含まれているのは:
Albert S. 2020-10-05 22:50:53 +02:00
コミット 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;
}