1
0
Fork 0

add 'terminal=true' support for .qsrun entries

Dieser Commit ist enthalten in:
Albert S. 2020-10-05 22:50:53 +02:00
Ursprung 2d14b01c5c
Commit 38cc87fbcd
1 geänderte Dateien mit 1 neuen und 0 gelöschten Zeilen

Datei anzeigen

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