Followup to bug 443370 autocomplete doesn't ignore input events well enough r=ajschult

This commit is contained in:
Neil Rashbrook 2008-10-09 11:49:17 +01:00
Родитель 771d39aec1
Коммит 7ae9a5c02f
1 изменённых файлов: 1 добавлений и 4 удалений

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

@ -912,9 +912,6 @@
// stop the queued up lookup on a timer
this.clearTimer();
if (this.ignoreInputEvent)
return;
if (this.disableAutoComplete)
return;
@ -1437,7 +1434,7 @@
<handlers>
<handler event="input"
action="this.processInput();"/>
action="if (!this.ignoreInputEvent) this.processInput();"/>
<handler event="keydown" phase="capturing"
action="return this.processKeyDown(event);"/>