From 354dad71d942935717bc6ccaf3916eb8d66b1b1a Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Mon, 23 Jan 2012 03:06:05 +0100 Subject: [PATCH] Fix context menu showing play when actually opening artist/album pages --- src/libtomahawk/contextmenu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/contextmenu.cpp b/src/libtomahawk/contextmenu.cpp index da2812827..558b9cb29 100644 --- a/src/libtomahawk/contextmenu.cpp +++ b/src/libtomahawk/contextmenu.cpp @@ -127,7 +127,7 @@ ContextMenu::setAlbums( const QList& albums ) m_albums << albums; if ( m_supportedActions & ActionPlay && itemCount() == 1 ) - m_sigmap->setMapping( addAction( tr( "&Play" ) ), ActionPlay ); + m_sigmap->setMapping( addAction( tr( "Show &Album page" ) ), ActionPlay ); if ( m_supportedActions & ActionQueue ) m_sigmap->setMapping( addAction( tr( "Add to &Queue" ) ), ActionQueue ); @@ -166,7 +166,7 @@ ContextMenu::setArtists( const QList& artists ) m_artists << artists; if ( m_supportedActions & ActionPlay && itemCount() == 1 ) - m_sigmap->setMapping( addAction( tr( "&Play" ) ), ActionPlay ); + m_sigmap->setMapping( addAction( tr( "Show &Artist page" ) ), ActionPlay ); if ( m_supportedActions & ActionQueue ) m_sigmap->setMapping( addAction( tr( "Add to &Queue" ) ), ActionQueue );