[vlc-commits] Qt4: show localized hotkey strings in preferences
Rémi Denis-Courmont
git at videolan.org
Sat Mar 10 11:49:53 CET 2012
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Mar 10 12:46:35 2012 +0200| [0be34d7019db0b2cda25f360a52de9411f45fb74] | committer: Rémi Denis-Courmont
Qt4: show localized hotkey strings in preferences
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0be34d7019db0b2cda25f360a52de9411f45fb74
---
modules/gui/qt4/util/customwidgets.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/util/customwidgets.cpp b/modules/gui/qt4/util/customwidgets.cpp
index 502802f..357c10b 100644
--- a/modules/gui/qt4/util/customwidgets.cpp
+++ b/modules/gui/qt4/util/customwidgets.cpp
@@ -288,7 +288,7 @@ int qtWheelEventToVLCKey( QWheelEvent *e )
QString VLCKeyToString( unsigned val )
{
- char *base = vlc_keycode2str (val, false);
+ char *base = vlc_keycode2str (val, true);
if (base == NULL)
return qtr( "Unset" );
More information about the vlc-commits
mailing list