EntryProvider: fix handling of names with spaces

このコミットが含まれているのは:
2020-09-28 18:50:04 +02:00
コミット b588fd07be

ファイルの表示

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