Bug 427291: Multiple focus events fired when clicking XUL textbox (focus child html:input directly rather than xul:textbox), r=mano

This commit is contained in:
Gavin Sharp 2008-06-15 21:21:09 -04:00
Родитель 80d3ee2d0b
Коммит e3842d8995
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -277,7 +277,7 @@
<![CDATA[ <![CDATA[
if (!this.mIgnoreClick && this.clickSelectsAll && if (!this.mIgnoreClick && this.clickSelectsAll &&
this.inputField.selectionStart == this.inputField.selectionEnd) { this.inputField.selectionStart == this.inputField.selectionEnd) {
this.focus(); this.inputField.focus()
this.editor.selectAll(); this.editor.selectAll();
} }
]]> ]]>