Commit fc33caea authored by David Fuhrmann's avatar David Fuhrmann

macosx: do not send left and right arrow key to controls

The left and right arrow keys have not any real advantage / functionality for
the playlist view or sidebar but are used by default for several hotkeys.
So lets allow these as VLC hotkeys (also for audio files).
parent fccc6ab9
...@@ -1160,8 +1160,6 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -1160,8 +1160,6 @@ static VLCMain *_o_sharedMainInstance = nil;
case NSBackspaceCharacter: case NSBackspaceCharacter:
case NSUpArrowFunctionKey: case NSUpArrowFunctionKey:
case NSDownArrowFunctionKey: case NSDownArrowFunctionKey:
case NSRightArrowFunctionKey:
case NSLeftArrowFunctionKey:
case NSEnterCharacter: case NSEnterCharacter:
case NSCarriageReturnCharacter: case NSCarriageReturnCharacter:
return NO; return NO;
......
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