Skip to content

Commit

Permalink
Fix application icon disappearance after removal of easter egg
Browse files Browse the repository at this point in the history
Commit 1eb3bfc changed return value to be a filename not the full path

(cherry-picked from 68387ce)
  • Loading branch information
cjmayo authored and nyalldawson committed Jan 15, 2017
1 parent 2d09b0b commit 4ae6b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsapplication.cpp
Expand Up @@ -396,7 +396,7 @@ QString QgsApplication::activeThemePath()

QString QgsApplication::appIconPath()
{
return QString( "qgis-icon-60x60.png" );
return iconsPath() + QStringLiteral( "qgis-icon-60x60.png" );
}

QString QgsApplication::iconPath( const QString& iconFile )
Expand Down

0 comments on commit 4ae6b56

Please sign in to comment.