Changed: Write icon under Linux if not found

This commit is contained in:
kervala 2016-10-09 15:10:15 +02:00
parent 850ab2cc9d
commit d9e8c9bb13

View file

@ -793,6 +793,12 @@ void COperationDialog::copyInstaller()
#else #else
// icon is in the same directory as installer // icon is in the same directory as installer
icon = config->getInstallationDirectory() + "/ryzom_installer.png"; icon = config->getInstallationDirectory() + "/ryzom_installer.png";
// create icon if not exists
if (!QFile::exists(icon) && !writeResource(":/icons/ryzom.png", icon))
{
qDebug() << "Unable to create" << icon;
}
#endif #endif
createShortcut(shortcut, name, executable, "", icon, ""); createShortcut(shortcut, name, executable, "", icon, "");