add 'terminal=true' support for .qsrun entries

Этот коммит содержится в:
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;
}