Bug 422528 - History menu extends (entries multiplied and not between dividers). Patch by Marco Bonardo [mak77] <mak77@supereva.it>, r=me.

This commit is contained in:
mozilla.mano%sent.com 2008-03-13 12:31:59 +00:00
Родитель 89ffbc5684
Коммит ee27e69876
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -590,7 +590,7 @@
// just add to the end.
if (aParentPopup._endMarker != -1)
aParentPopup.insertBefore(element,
aParentPopup.childNodes[this._endMarker++]);
aParentPopup.childNodes[aParentPopup._endMarker++]);
else
aParentPopup.appendChild(element);
}

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

@ -1922,8 +1922,8 @@ var PlacesUtils = {
// skip the empty menu item
if (aPopup._emptyMenuItem != items[i]) {
aPopup.removeChild(items[i]);
if (this._endMarker > 0)
--this._endMarker;
if (aPopup._endMarker > 0)
--aPopup._endMarker;
}
}