Skip to content

Commit 68387ce

Browse files
committed
Fix application icon disappearance after removal of easter egg
Commit 1eb3bfc changed return value to be a filename not the full path
1 parent 77b8c3d commit 68387ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsapplication.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ QString QgsApplication::activeThemePath()
396396

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

402402
QString QgsApplication::iconPath( const QString& iconFile )

0 commit comments

Comments
 (0)