1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-18 23:09:42 +01:00

Merge pull request #241 from TheOneRing/disable_notifiy_win

make the checkbox to disable notifications avalible on windows
This commit is contained in:
Christian Muehlhaeuser 2014-07-15 09:40:02 +02:00
commit 2ed8431ff9

View File

@ -96,7 +96,7 @@ SettingsDialog::SettingsDialog(QObject *parent )
m_advancedWidgetUi->checkBoxHttp->setChecked( s->httpEnabled() );
m_advancedWidgetUi->checkBoxListenApi->setChecked( s->httpBindAll() );
m_advancedWidgetUi->checkBoxSongChangeNotifications->setChecked( s->songChangeNotificationEnabled() );
#ifndef Q_OS_LINUX // no backends on OSX or Win so far
#ifdef Q_OS_MAC // no backends on OSX so far
m_advancedWidgetUi->checkBoxSongChangeNotifications->setVisible( false );
#endif