Commit 4edf0bbf authored by Antoine Cellerier's avatar Antoine Cellerier

Remove ... after "Minimal View" menu item.

parent dd68babf
...@@ -366,7 +366,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, ...@@ -366,7 +366,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
if( mi ) if( mi )
{ {
/* Minimal View */ /* Minimal View */
QAction *action = menu->addAction( qtr( "Mi&nimal View..." ), mi, QAction *action = menu->addAction( qtr( "Mi&nimal View" ), mi,
SLOT( toggleMinimalView() ), qtr( "Ctrl+H" ) ); SLOT( toggleMinimalView() ), qtr( "Ctrl+H" ) );
action->setCheckable( true ); action->setCheckable( true );
action->setData( "_static_" ); action->setData( "_static_" );
...@@ -843,7 +843,7 @@ void QVLCMenu::PopupMenu( intf_thread_t *p_intf, bool show ) ...@@ -843,7 +843,7 @@ void QVLCMenu::PopupMenu( intf_thread_t *p_intf, bool show )
if( mi ) if( mi )
{ {
action = submenu->addAction( QIcon( "" ), action = submenu->addAction( QIcon( "" ),
qtr( "Minimal View..." ), mi, SLOT( toggleMinimalView() ) ); qtr( "Minimal View" ), mi, SLOT( toggleMinimalView() ) );
action->setCheckable( true ); action->setCheckable( true );
action->setChecked( !( mi->getControlsVisibilityStatus() & action->setChecked( !( mi->getControlsVisibilityStatus() &
CONTROLS_VISIBLE ) ); CONTROLS_VISIBLE ) );
......
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