Commit abbea579 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: recent Items, prepend with an accelerator and a number for keyboard faster access.

parent 740567b5
......@@ -1329,7 +1329,8 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf )
{
for( int i = 0; i < l.size(); ++i )
{
action = recentsMenu->addAction( l.at( i ),
action = recentsMenu->addAction(
QString( "&%1: " ).arg( i + 1 ) + l.at( i ),
rmrl->signalMapper,
SLOT( map() ) );
rmrl->signalMapper->setMapping( action, l.at( i ) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment