From 26788507002640d257af176f90ea0dd0baea2fb2 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sat, 25 Oct 2014 08:02:09 +0200 Subject: [PATCH] Don't set a window icon on OS X. --- src/tomahawk/TomahawkWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tomahawk/TomahawkWindow.cpp b/src/tomahawk/TomahawkWindow.cpp index 1d44bfca1..d6db6bf77 100644 --- a/src/tomahawk/TomahawkWindow.cpp +++ b/src/tomahawk/TomahawkWindow.cpp @@ -113,7 +113,9 @@ TomahawkWindow::TomahawkWindow( QWidget* parent ) , m_trayIcon( 0 ) , m_audioRetryCounter( 0 ) { +#ifndef Q_OS_MAC setWindowIcon( QIcon( RESPATH "icons/tomahawk-icon-128x128.png" ) ); +#endif new ViewManager( this ); QueueView* queueView = new QueueView();