Bug 427746 - Bookmarks toolbar is empty when using 'copy' context menu option (for mak77@supereva.it, r=mano, a=beltzner)

This commit is contained in:
dietrich@mozilla.com 2008-04-16 12:33:39 -07:00
Родитель 43f7dcb00f
Коммит f86548c76e
2 изменённых файлов: 6 добавлений и 3 удалений

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

@ -449,7 +449,7 @@
if (this._self._result != val) {
this._self._containerNodesMap = [];
this._self._result = val;
if (val) // this calls _rebuild through invalidateContainer
if (val) // this calls _rebuild through invalidateContainer
val.root.containerOpen = true;
}
return val;

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

@ -1306,14 +1306,17 @@ var PlacesUtils = {
// write child nodes
if (!aNode.livemark) {
asContainer(aSourceNode);
aSourceNode.containerOpen = true;
var wasOpen = aSourceNode.containerOpen;
if (!wasOpen)
aSourceNode.containerOpen = true;
var cc = aSourceNode.childCount;
for (var i = 0; i < cc; ++i) {
if (i != 0)
aStream.write(",", 1);
serializeNodeToJSONStream(aSourceNode.getChild(i), i);
}
aSourceNode.containerOpen = false;
if (!wasOpen)
aSourceNode.containerOpen = false;
}
// write suffix