Bug 427412: prevent default beeping action for Cmd+Enter on Mac in autocomplete widgets, r=enndeakin, a=damon

This commit is contained in:
gavin%gavinsharp.com 2008-04-22 19:47:44 +00:00
Родитель a0b0edf4e7
Коммит 8cc7357a88
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -460,6 +460,11 @@
cancel = this.mController.handleEscape();
break;
case KeyEvent.DOM_VK_RETURN:
#ifdef XP_MACOSX
// Prevent the default action, since it will beep on Mac
if (aEvent.metaKey)
aEvent.preventDefault();
#endif
this.mEnterEvent = aEvent;
cancel = this.mController.handleEnter(false);
break;