1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-15 02:24:50 +02:00

* Fixed QueueView's context menu not working.

This commit is contained in:
Christian Muehlhaeuser
2013-10-06 05:31:04 +02:00
parent 4db6d33d16
commit 327a9136fb

View File

@@ -35,7 +35,6 @@ PlaylistView::PlaylistView( QWidget* parent )
: TrackView( parent ) : TrackView( parent )
, m_model( 0 ) , m_model( 0 )
{ {
connect( contextMenu(), SIGNAL( triggered( int ) ), SLOT( onMenuTriggered( int ) ) );
} }
@@ -155,6 +154,8 @@ PlaylistView::isTemporaryPage() const
void void
PlaylistView::onMenuTriggered( int action ) PlaylistView::onMenuTriggered( int action )
{ {
TrackView::onMenuTriggered( action );
switch ( action ) switch ( action )
{ {
default: default: