From c0e0a3708b31de9b61d86c74389e647fc1324d11 Mon Sep 17 00:00:00 2001 From: Patrick von Reth Date: Thu, 24 Jul 2014 00:55:15 +0200 Subject: [PATCH] dont hide the checkbox on mac --- src/tomahawk/dialogs/SettingsDialog.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/tomahawk/dialogs/SettingsDialog.cpp b/src/tomahawk/dialogs/SettingsDialog.cpp index d787f5a26..f58495df8 100644 --- a/src/tomahawk/dialogs/SettingsDialog.cpp +++ b/src/tomahawk/dialogs/SettingsDialog.cpp @@ -96,9 +96,6 @@ SettingsDialog::SettingsDialog(QObject *parent ) m_advancedWidgetUi->checkBoxHttp->setChecked( s->httpEnabled() ); m_advancedWidgetUi->checkBoxListenApi->setChecked( s->httpBindAll() ); m_advancedWidgetUi->checkBoxSongChangeNotifications->setChecked( s->songChangeNotificationEnabled() ); - #ifdef Q_OS_MAC // no backends on OSX so far - m_advancedWidgetUi->checkBoxSongChangeNotifications->setVisible( false ); - #endif //Network settings Tomahawk::Network::ExternalAddress::Mode mode = TomahawkSettings::instance()->externalAddressMode();