mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-12 18:29:04 +00:00
Changed: Write icon under Linux if not found
--HG-- branch : develop
This commit is contained in:
parent
cd618d4402
commit
1a3a0911e3
1 changed files with 6 additions and 0 deletions
|
@ -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, "");
|
||||||
|
|
Loading…
Reference in a new issue