mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-07 14:46:33 +02:00
* Don't use Left/Right shortcuts for advancing in playlist.
This commit is contained in:
@@ -92,10 +92,10 @@ ActionCollection::initActions()
|
||||
m_actionCollection[ "stop" ] = new QAction( tr( "&Stop" ), this );
|
||||
m_actionCollection[ "previousTrack" ] = new QAction( tr( "&Previous Track" ), this );
|
||||
m_actionCollection[ "previousTrack" ]->setIcon( ImageRegistry::instance()->icon( RESPATH "images/back.svg" ) );
|
||||
m_actionCollection[ "previousTrack" ]->setShortcut( QKeySequence( "Left" ) );
|
||||
// m_actionCollection[ "previousTrack" ]->setShortcut( QKeySequence( "Left" ) );
|
||||
m_actionCollection[ "nextTrack" ] = new QAction( tr( "&Next Track" ), this );
|
||||
m_actionCollection[ "nextTrack" ]->setIcon( ImageRegistry::instance()->icon( RESPATH "images/forward.svg" ) );
|
||||
m_actionCollection[ "nextTrack" ]->setShortcut( QKeySequence( "Right" ) );
|
||||
// m_actionCollection[ "nextTrack" ]->setShortcut( QKeySequence( "Right" ) );
|
||||
m_actionCollection[ "quit" ] = new QAction( tr( "&Quit" ), this );
|
||||
m_actionCollection[ "quit" ]->setShortcut( QKeySequence::Quit );
|
||||
m_actionCollection[ "quit" ]->setShortcutContext( Qt::ApplicationShortcut );
|
||||
|
Reference in New Issue
Block a user