diff --git a/src/libtomahawk/ContextMenu.cpp b/src/libtomahawk/ContextMenu.cpp index 1b562b093..4a88949cf 100644 --- a/src/libtomahawk/ContextMenu.cpp +++ b/src/libtomahawk/ContextMenu.cpp @@ -85,9 +85,9 @@ ContextMenu::setQueries( const QList& queries ) if ( m_supportedActions & ActionStopAfter && itemCount() == 1 ) { if ( AudioEngine::instance()->stopAfterTrack() == queries.first() ) - m_sigmap->setMapping( addAction( tr( "&Continue Playback after this Track" ) ), ActionStopAfter ); + m_sigmap->setMapping( addAction( tr( "Continue Playback after this &Track" ) ), ActionStopAfter ); else - m_sigmap->setMapping( addAction( tr( "&Stop Playback after this Track" ) ), ActionStopAfter ); + m_sigmap->setMapping( addAction( tr( "Stop Playback after this &Track" ) ), ActionStopAfter ); } addSeparator();