From 755e9643af2db2b92ff2e1181cc1ff3ca843d858 Mon Sep 17 00:00:00 2001 From: probonopd Date: Wed, 14 Sep 2016 01:16:22 +0200 Subject: [PATCH] fix Type=Application in .desktop file --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 4ffb82c..8994781 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -1000,7 +1000,7 @@ bool checkAppImagePrerequisites(const QString &appDirPath) file.open(QIODevice::WriteOnly | QIODevice::Text); QTextStream out(&file); out << "[Desktop Entry]\n"; - out << "Type=Application]\n"; + out << "Type=Application\n"; out << "Name=Application\n"; out << "Exec=AppRun %F\n"; out << "Icon=default\n";