From bd607b6c549e5210a914a956d491468d24c61779 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Thu, 18 Feb 2016 15:40:08 +0100 Subject: [PATCH] DRY in ContextMenu --- src/libtomahawk/ContextMenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/ContextMenu.cpp b/src/libtomahawk/ContextMenu.cpp index efd76c0ac..f68cea5c5 100644 --- a/src/libtomahawk/ContextMenu.cpp +++ b/src/libtomahawk/ContextMenu.cpp @@ -51,7 +51,7 @@ ContextMenu::ContextMenu( QWidget* parent ) m_sigmap = new QSignalMapper( this ); connect( m_sigmap, SIGNAL( mapped( int ) ), SLOT( onTriggered( int ) ) ); - m_supportedActions = ActionPlay | ActionQueue | ActionPlaylist | ActionCopyLink | ActionLove | ActionStopAfter | ActionPage | ActionEditMetadata | ActionSend; + clear(); }