Commit 53424e95 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix #1744 in Qt menus.

parent 0871d444
...@@ -378,8 +378,9 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, ...@@ -378,8 +378,9 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
action->setChecked( true ); action->setChecked( true );
/* FullScreen View */ /* FullScreen View */
action = menu->addAction( qtr( "Toggle Fullscreen Interface" ), mi, action = menu->addAction( qtr( "Fullscreen Interface" ), mi,
SLOT( toggleFullScreen() ), QString( "F11" ) ); SLOT( toggleFullScreen() ), QString( "F11" ) );
action->setCheckable( true );
/* Advanced Controls */ /* Advanced Controls */
action = menu->addAction( qtr( "Advanced Controls" ), mi, action = menu->addAction( qtr( "Advanced Controls" ), mi,
......
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