1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-05 14:28:40 +01:00

Remove the ugly empty space on the left side of the smart playlist dialog on OS X

This commit is contained in:
David Sansome 2012-11-03 15:16:52 -07:00
parent 561ac96e89
commit d092c5a3ce

View File

@ -68,6 +68,11 @@ Wizard::Wizard(Application* app, LibraryBackend* library, QWidget* parent)
setWindowTitle(tr("Smart playlist"));
resize(788, 628);
#ifdef Q_OS_MAC
// MacStyle leaves an ugly empty space on the left side of the dialog.
setWizardStyle(QWizard::ClassicStyle);
#endif // Q_OS_MAC
// Type page
type_page_->setTitle(tr("Playlist type"));
type_page_->setSubTitle(tr("A smart playlist is a dynamic list of songs that come from your library. There are different types of smart playlist that offer different ways of selecting songs."));