(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)
This commit is contained in:
bjarni
2007-01-05 19:50:44 +00:00
parent 566288adf0
commit fd24669dee

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;