]> git.sesse.net Git - vlc/commitdiff
Remove ... after "Minimal View" menu item.
authorAntoine Cellerier <dionoea@videolan.org>
Mon, 25 Aug 2008 16:31:48 +0000 (18:31 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Mon, 25 Aug 2008 16:32:48 +0000 (18:32 +0200)
modules/gui/qt4/menus.cpp

index 90dd41f82fe3f08316f04f5e40c0654378c6bcec..f52eb8d452ee42c228e373bb3d8d1056de5386d4 100644 (file)
@@ -366,7 +366,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
     if( mi )
     {
         /* 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" ) );
         action->setCheckable( true );
         action->setData( "_static_" );
@@ -843,7 +843,7 @@ void QVLCMenu::PopupMenu( intf_thread_t *p_intf, bool show )
             if( mi )
             {
                 action = submenu->addAction( QIcon( "" ),
-                     qtr( "Minimal View..." ), mi, SLOT( toggleMinimalView() ) );
+                     qtr( "Minimal View" ), mi, SLOT( toggleMinimalView() ) );
                 action->setCheckable( true );
                 action->setChecked( !( mi->getControlsVisibilityStatus() &
                             CONTROLS_VISIBLE ) );