Commit 8ec938ef45bd60a04a55309a1000283038f00fa0

  • Tree SHA1: 22ef347
  • Parent SHA1: 81bb0df (Add a header to the file view (and make it a treeview subclass once again since listviews do not support headers). Also add size and date columns.)
  • raw diff | raw patch
Fix the issue with "Next Track" global action. Before the fix, it was shown in global shortcuts as "next" and did not honour the i18n settings.
  
849849 action->setIcon( KIcon("edit-delete-amarok") );
850850 //this is connected inside the dynamic playlist category
851851
852 action = new KAction( this );
852 action = new KAction( KIcon("media-skip-forward-amarok"), i18n( "Next Track" ), this );
853853 ac->addAction( "next", action );
854854 action->setGlobalShortcut( KShortcut( Qt::META + Qt::Key_B ) );
855 action->setIcon( KIcon("media-skip-forward-amarok") );
856 action->setText( i18n( "Next Track" ) );
857855 connect( action, SIGNAL(triggered(bool)), pa, SLOT( next() ) );
858856
859857 action = new KAction( i18n( "Increase Volume" ), this );