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

Qt: recent menus, fix shortcut

parent b29deba6
......@@ -1524,10 +1524,10 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf )
char *psz_temp = decode_URI_duplicate( qtu( l.at( i ) ) );
action = recentsMenu->addAction(
QString( "&%1: " ).arg( i + 1 ) +
QString( i < 9 ? "&%1: ": "%1: " ).arg( i + 1 ) +
QApplication::fontMetrics().elidedText( psz_temp, Qt::ElideLeft, 400 ),
rmrl->signalMapper, SLOT( map() ),
i <= 9 ? QString( "Ctrl+%1" ).arg( i + 1 ) : "" );
i < 9 ? QString( "Ctrl+%1" ).arg( i + 1 ) : "" );
rmrl->signalMapper->setMapping( action, l.at( i ) );
free( psz_temp );
......
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