1
0
Fork 0

(svn r7886) -Fix: [OSX] control+enter will no longer toggle fullscreen as it collided with other hotkeys (pv2b)

People should use command+enter as it was originally intended (this key combo also worked before this commit)
release/0.6
bjarni 2007-01-05 19:50:44 +00:00
parent 13db63f63b
commit 7dff5fccd3
1 changed files with 1 additions and 4 deletions

View File

@ -337,10 +337,7 @@ static void QZ_KeyEvent(unsigned short keycode, unsigned short unicode, BOOL dow
case QZ_RETURN:
case QZ_f:
if (down && (
(_cocoa_video_data.current_mods & NSControlKeyMask) ||
(_cocoa_video_data.current_mods & NSCommandKeyMask)
)) {
if (down && (_cocoa_video_data.current_mods & NSCommandKeyMask)) {
CocoaVideoFullScreen(!_fullscreen);
}
break;