Bug 685846 - DOMMenuItemActive is not fired for richlistitem of richlistbox autocomplete popup if it's selected repeatedly, r=enn

This commit is contained in:
Alexander Surkov 2011-09-15 11:33:16 +09:00
Родитель 984700f3c8
Коммит 694dbdf655
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -141,10 +141,12 @@
</getter> </getter>
<setter> <setter>
<![CDATA[ <![CDATA[
if (val >= 0) if (val >= 0) {
this.selectItem(this.getItemAtIndex(val)); this.selectItem(this.getItemAtIndex(val));
else } else {
this.clearSelection(); this.clearSelection();
this.currentItem = null;
}
]]> ]]>
</setter> </setter>
</property> </property>