From b588fd07be537f2db7d1c97966b50d2f71bba872 Mon Sep 17 00:00:00 2001 From: Albert S Date: Mon, 28 Sep 2020 18:50:04 +0200 Subject: [PATCH] EntryProvider: fix handling of names with spaces --- entryprovider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entryprovider.cpp b/entryprovider.cpp index 4335db0..f70d8f0 100644 --- a/entryprovider.cpp +++ b/entryprovider.cpp @@ -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") {