Fixed: Desktop files need to be executable

This commit is contained in:
kervala 2016-09-28 23:32:24 +02:00
parent a62a5e9957
commit c72d7294bd

View file

@ -238,6 +238,9 @@ bool createLink(const QString &link, const QString &name, const QString &executa
file.write(data.toUtf8()); file.write(data.toUtf8());
file.close(); file.close();
// set executable flags to .desktop
QFile::setPermissions(path, QFile::permissions(path) | QFile::ExeGroup | QFile::ExeUser | QFile::ExeOther);
return true; return true;
} }