1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-16 11:19:18 +01:00

Hide behaviour tab in settings on mac.

This commit is contained in:
John Maguire 2010-06-18 14:21:46 +00:00
parent 4e82ed2a4d
commit f7b79eb766

View File

@ -92,6 +92,10 @@ SettingsDialog::SettingsDialog(QWidget* parent)
// Make sure the list is big enough to show all the items
ui_->list->setMinimumWidth(ui_->list->sizeHintForColumn(0));
#ifdef Q_OS_DARWIN
ui_->list->item(1)->setHidden(true); // Hide "Behaviour" on mac.
#endif
}
SettingsDialog::~SettingsDialog() {