[vlc-devel] commit: Fix #1744 in Qt menus. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Sat Jul 26 03:55:34 CEST 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Jul 25 18:57:44 2008 -0700| [53424e95057b7a53fd19e8a7fa0be9a87d21e54e]
Fix #1744 in Qt menus.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=53424e95057b7a53fd19e8a7fa0be9a87d21e54e
---
modules/gui/qt4/menus.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp
index 65b3ea0..8b547c7 100644
--- a/modules/gui/qt4/menus.cpp
+++ b/modules/gui/qt4/menus.cpp
@@ -378,8 +378,9 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
action->setChecked( true );
/* FullScreen View */
- action = menu->addAction( qtr( "Toggle Fullscreen Interface" ), mi,
+ action = menu->addAction( qtr( "Fullscreen Interface" ), mi,
SLOT( toggleFullScreen() ), QString( "F11" ) );
+ action->setCheckable( true );
/* Advanced Controls */
action = menu->addAction( qtr( "Advanced Controls" ), mi,
More information about the vlc-devel
mailing list