Parcourir la source

Use system icon theme on Linux

Vignesh B il y a 3 ans
Parent
commit
0508d96e33
1 fichiers modifiés avec 7 ajouts et 2 suppressions
  1. 7 2
      src/main.cpp

+ 7 - 2
src/main.cpp

@@ -155,11 +155,16 @@ int main(int argc, char *argv[])
       qputenv("QT_SCALE_FACTOR", scale.toUtf8());
 
     QApplication app(newArgc, newArgv);
-#if defined(Q_OS_WIN)
-    // Setting window icon on OSX or Linux will break user ability to change it
+#if defined(Q_OS_WIN) 
+    // Setting window icon on OSX will break user ability to change it
     app.setWindowIcon(QIcon(":/images/icon.png"));
 #endif
 
+#if defined(Q_OS_LINUX)
+  	// Set window icon on Linux using system icon theme
+  	app.setWindowIcon(QIcon::fromTheme("com.github.iwalton3.jellyfin-media-player"));
+#endif
+
 #if defined(Q_OS_MAC) && defined(NDEBUG)
     PFMoveToApplicationsFolderIfNecessary();
 #endif