Commit 986abce1 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - layout fix.

parent 688eedc9
...@@ -172,7 +172,8 @@ void QVLCMenu::createMenuBar( MainInterface *mi, ...@@ -172,7 +172,8 @@ void QVLCMenu::createMenuBar( MainInterface *mi,
QMenuBar *bar = mi->menuBar(); QMenuBar *bar = mi->menuBar();
BAR_ADD( FileMenu(), qtr( "&Media" ) ); BAR_ADD( FileMenu(), qtr( "&Media" ) );
BAR_ADD( PlaylistMenu( p_intf, mi ), qtr( "&Playlist" ) ); BAR_ADD( PlaylistMenu( p_intf, mi ), qtr( "&Playlist" ) );
BAR_ADD( ToolsMenu( p_intf, mi, visual_selector_enabled, true ), qtr( "&Tools" ) ); BAR_ADD( ToolsMenu( p_intf, mi, visual_selector_enabled, true ),
qtr( "&Tools" ) );
BAR_DADD( AudioMenu( p_intf, NULL ), qtr( "&Audio" ), 2 ); BAR_DADD( AudioMenu( p_intf, NULL ), qtr( "&Audio" ), 2 );
BAR_DADD( VideoMenu( p_intf, NULL ), qtr( "&Video" ), 1 ); BAR_DADD( VideoMenu( p_intf, NULL ), qtr( "&Video" ), 1 );
BAR_DADD( NavigMenu( p_intf, NULL ), qtr( "&Playback" ), 3 ); BAR_DADD( NavigMenu( p_intf, NULL ), qtr( "&Playback" ), 3 );
...@@ -330,8 +331,8 @@ QMenu *QVLCMenu::InterfacesMenu( intf_thread_t *p_intf, QMenu *current ) ...@@ -330,8 +331,8 @@ QMenu *QVLCMenu::InterfacesMenu( intf_thread_t *p_intf, QMenu *current )
if( !p_intf->pf_show_dialog ) if( !p_intf->pf_show_dialog )
{ {
menu->addSeparator(); menu->addSeparator();
menu->addAction( qtr( "Switch to skins" ), THEDP, SLOT( switchToSkins() ), menu->addAction( qtr( "Switch to skins" ), THEDP,
QString( "Ctrl+Z" ) ); SLOT( switchToSkins() ), QString( "Ctrl+Z" ) );
#ifdef HAVE_WX #ifdef HAVE_WX
if( module_Exists( VLC_OBJECT( p_intf ), "wxwidgets" ) ) if( module_Exists( VLC_OBJECT( p_intf ), "wxwidgets" ) )
{ {
......
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