1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-25 02:09:48 +01:00

Set sourcetree to itunes/mail-like grey and blue on osx. Somehow this was lost during my merge.

This commit is contained in:
Leo Franchi 2011-04-26 23:35:27 -04:00
parent 6945b503cf
commit 33e940f708

View File

@ -105,6 +105,13 @@ SourceTreeView::SourceTreeView( QWidget* parent )
// connect( selectionModel(), SIGNAL( selectionChanged( QItemSelection, QItemSelection ) ), SLOT( onSelectionChanged() ) );
hideOfflineSources();
// Light-blue sourcetree on osx
#ifdef Q_WS_MAC
setStyleSheet( "SourceTreeView:active { background: #DDE4EB; } "
"SourceTreeView { background: #EDEDED; } " );
#endif
}