1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

* Try to fix dupe Tomahawk menu on OSX.

This commit is contained in:
Christian Muehlhaeuser
2011-12-01 15:34:24 +01:00
parent 324f8a9515
commit eec1e56dda

View File

@@ -88,6 +88,10 @@ TomahawkWindow::TomahawkWindow( QWidget* parent )
connect( vm, SIGNAL( hideQueueRequested() ), SLOT( hideQueue() ) );
ui->setupUi( this );
ui->menuApp->insertAction( ui->actionCreatePlaylist, ActionCollection::instance()->getAction( "togglePrivacy" ) );
ui->menuApp->insertSeparator( ui->actionCreatePlaylist );
applyPlatformTweaks();
ui->centralWidget->setContentsMargins( 0, 0, 0, 0 );
@@ -106,9 +110,6 @@ TomahawkWindow::TomahawkWindow( QWidget* parent )
ui->menu_Help->addAction( "Crash now...", this, SLOT( crashNow() ) );
}
ui->menuApp->insertAction( ui->actionCreatePlaylist, ActionCollection::instance()->getAction( "togglePrivacy" ) );
ui->menuApp->insertSeparator( ui->actionCreatePlaylist );
// set initial state
onSipDisconnected();
vm->setQueue( m_queueView );