[vlc-commits] Qt: changes the hotkey to open the Tools menu

Benoit du Payrat git at videolan.org
Fri Apr 8 15:51:11 CEST 2016


vlc | branch: master | Benoit du Payrat <benoit at videolabs.io> | Thu Apr  7 18:20:14 2016 +0200| [8710ff3438d583af5c263e3f77bbf85d867abee8] | committer: Hugo Beauzée-Luyssen

Qt: changes the hotkey to open the Tools menu

Fix #9480

Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8710ff3438d583af5c263e3f77bbf85d867abee8
---

 modules/gui/qt/menus.cpp |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt/menus.cpp b/modules/gui/qt/menus.cpp
index 3f42917..5555f0e 100644
--- a/modules/gui/qt/menus.cpp
+++ b/modules/gui/qt/menus.cpp
@@ -338,7 +338,7 @@ void VLCMenuBar::createMenuBar( MainInterface *mi,
     BAR_DADD( VideoMenu( p_intf, bar ), qtr( "&Video" ), 2 );
     BAR_DADD( SubtitleMenu( p_intf, bar ), qtr( "Subti&tle" ), 5 );
 
-    addMenuToMainbar( ToolsMenu( p_intf, bar ), qtr( "T&ools" ), bar );
+    addMenuToMainbar( ToolsMenu( p_intf, bar ), qtr( "Tool&s" ), bar );
 
     /* View menu, a bit different */
     BAR_DADD( ViewMenu( p_intf, NULL, mi ), qtr( "V&iew" ), 4 );
@@ -1063,7 +1063,7 @@ QMenu* VLCMenuBar::PopupMenu( intf_thread_t *p_intf, bool show )
     /* Add some special entries for windowed mode: Interface Menu */
     if( !b_isFullscreen )
     {
-        QMenu *submenu = new QMenu( qtr( "T&ools" ), menu );
+        QMenu *submenu = new QMenu( qtr( "Tool&s" ), menu );
         /*QMenu *tools =*/ ToolsMenu( p_intf, submenu );
         submenu->addSeparator();
 



More information about the vlc-commits mailing list