1
0
Fork 0

EntryProvider: fix handling of names with spaces

Esse commit está contido em:
Albert S. 2020-09-28 18:50:04 +02:00
commit b588fd07be
1 arquivos alterados com 1 adições e 1 exclusões

Ver arquivo

@ -155,7 +155,7 @@ EntryConfig EntryProvider::readqsrunFile(const QString &path)
}
if(key == "name")
{
result.name = splitted[1];
result.name = splitted.mid(1).join(' ');
}
if(key == "icon")
{