We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c7dfcb commit 6a017d6Copy full SHA for 6a017d6
src/core/desktopentry.cpp
@@ -213,7 +213,7 @@ QVector<QString> DesktopEntry::parseExecString(const QString& execString) {
213
214
currentArgument += c;
215
escape = 0;
216
- } else if (c == u'"') {
+ } else if (c == u'"' || c == u'\'') {
217
parsingString = false;
218
} else {
219
@@ -229,7 +229,7 @@ QVector<QString> DesktopEntry::parseExecString(const QString& execString) {
229
percent = false;
230
} else if (c == '%') {
231
percent = true;
232
233
parsingString = true;
234
} else if (c == u' ') {
235
if (!currentArgument.isEmpty()) {
0 commit comments