Commit 55a915ea authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: handle Meta modifier in the prefs

parent 6fc7f48a
......@@ -427,6 +427,8 @@ QString VLCKeyToString( int val )
r+= qfu( "Alt+" );
if( val & KEY_MODIFIER_SHIFT )
r+= qfu( "Shift+" );
if( val & KEY_MODIFIER_META )
r+= qfu( "Meta+" );
if (base)
{
......
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