Commit 5216a752 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: provide shortcuts for history items

Recents items from 1 to 9 are supported to Ctrl+1 to Ctrl+9
parent d3cc662f
......@@ -1437,8 +1437,8 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf )
{
action = recentsMenu->addAction(
QString( "&%1: " ).arg( i + 1 ) + l.at( i ),
rmrl->signalMapper,
SLOT( map() ) );
rmrl->signalMapper, SLOT( map() ),
i <= 9 ? QString( "Ctrl+%1" ).arg( i + 1 ) : "" );
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