Commit 0e61dd3d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt, menus: move the interface menu around in the view menu

parent a9d32139
...@@ -453,9 +453,6 @@ QMenu *QVLCMenu::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterface ...@@ -453,9 +453,6 @@ QMenu *QVLCMenu::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterface
menu->addSeparator(); menu->addSeparator();
InterfacesMenu( p_intf, menu );
menu->addSeparator();
/* Minimal View */ /* Minimal View */
action = menu->addAction( qtr( "Mi&nimal View" ) ); action = menu->addAction( qtr( "Mi&nimal View" ) );
action->setShortcut( qtr( "Ctrl+H" ) ); action->setShortcut( qtr( "Ctrl+H" ) );
...@@ -494,6 +491,10 @@ QMenu *QVLCMenu::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterface ...@@ -494,6 +491,10 @@ QMenu *QVLCMenu::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterface
#endif #endif
menu->addSeparator(); menu->addSeparator();
InterfacesMenu( p_intf, menu );
menu->addSeparator();
/* Extensions */ /* Extensions */
ExtensionsMenu( p_intf, menu ); ExtensionsMenu( p_intf, menu );
......
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