EntryProvider: fix handling of names with spaces

Este commit está contenido en:
Albert S. 2020-09-28 18:50:04 +02:00
padre 5eb09540c6
commit b588fd07be
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -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")
{