Bug 437616 - suppress select events while selecting pasted bookmarks (for jdarmochwal@gmx.de, r=mano)

This commit is contained in:
Dietrich Ayala 2008-07-03 10:46:52 -07:00
Родитель 89dcd024d7
Коммит e5e018a1a2
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -653,11 +653,13 @@
// index in the tree.
var resultview = this.getResultView();
var selection = this.view.selection;
selection.selectEventsSuppressed = true;
selection.clearSelection();
for (var i=0; i < nodes.length; i++) {
var index = resultview.treeIndexForNode(nodes[i]);
selection.rangedSelect(index, index, true);
}
selection.selectEventsSuppressed = false;
]]></body>
</method>