[vlc-commits] Qt,	menus: move the interface menu around in the view menu
    Jean-Baptiste Kempf 
    git at videolan.org
       
    Mon Mar 21 00:15:23 CET 2011
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Mar 21 00:15:01 2011 +0100| [0e61dd3db40b9bd0c64f1badeeb8cd43dc2933ae] | committer: Jean-Baptiste Kempf
Qt, menus: move the interface menu around in the view menu
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0e61dd3db40b9bd0c64f1badeeb8cd43dc2933ae
---
 modules/gui/qt4/menus.cpp |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp
index bed9552..5fa760f 100644
--- a/modules/gui/qt4/menus.cpp
+++ b/modules/gui/qt4/menus.cpp
@@ -453,9 +453,6 @@ QMenu *QVLCMenu::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterface
 
     menu->addSeparator();
 
-    InterfacesMenu( p_intf, menu );
-    menu->addSeparator();
-
     /* Minimal View */
     action = menu->addAction( qtr( "Mi&nimal View" ) );
     action->setShortcut( qtr( "Ctrl+H" ) );
@@ -494,6 +491,10 @@ QMenu *QVLCMenu::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterface
 #endif
 
     menu->addSeparator();
+
+    InterfacesMenu( p_intf, menu );
+    menu->addSeparator();
+
     /* Extensions */
     ExtensionsMenu( p_intf, menu );
 
    
    
More information about the vlc-commits
mailing list