EntryProvider: fix handling of names with spaces

This commit is contained in:
Albert S. 2020-09-28 18:50:04 +02:00
والد 5eb09540c6
کامیت b588fd07be
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده

مشاهده پرونده

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