Skip to content

Commit

Permalink
fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
cohoe committed Dec 10, 2020
1 parent 99ffee9 commit 997987f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/unix/platform_unix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ void PlatformUnix::alterItem(CatItem* item) {
else if (line.startsWith("Icon", Qt::CaseInsensitive))
icon = line.split("=")[1].trimmed();
else if (line.startsWith("Exec", Qt::CaseInsensitive))
exe = line.split("=")[1].trimmed();
exe = line.replace("Exec=", "", Qt::CaseInsensitive).trimmed();
else if (line.startsWith("NoDisplay"))
nodisplay = line.split("=")[1].trimmed();

Expand Down

0 comments on commit 997987f

Please sign in to comment.