1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-15 05:22:35 +02:00

Hide song change notification setting on non-linux

This commit is contained in:
Dominik Schmidt 2012-11-25 23:05:30 +01:00
parent 23001f4e4a
commit f129e5bd53

View File

@ -91,6 +91,9 @@ SettingsDialog::SettingsDialog(QObject *parent )
m_advancedWidgetUi->checkBoxReporter->setChecked( s->crashReporterEnabled() );
m_advancedWidgetUi->checkBoxHttp->setChecked( s->httpEnabled() );
m_advancedWidgetUi->checkBoxSongChangeNotifications->setChecked( s->songChangeNotificationEnabled() );
#ifndef Q_OS_LINUX // no backends on OSX or Win so far
m_advancedWidgetUi->checkBoxSongChangeNotifications->setVisible( false );
#endif
//Network settings
TomahawkSettings::ExternalAddressMode mode = TomahawkSettings::instance()->externalAddressMode();