(svn r7955) -Backport from trunk (r7886):

- [osx] control+enter no longer fullscreens, interfered with team-chat.
This commit is contained in:
Darkvater 2007-01-07 12:19:08 +00:00
parent 30fadfb54b
commit 8960b5740f
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;