diff --git a/src/tomahawkwindow.cpp b/src/tomahawkwindow.cpp index 9d61acbb3..6a6e880da 100644 --- a/src/tomahawkwindow.cpp +++ b/src/tomahawkwindow.cpp @@ -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 );