Bug 415521 ? when inserting into a sorted view we should insert at the end (for marco, r=dietrich, a=beltzner)

This commit is contained in:
dietrich@mozilla.com 2008-02-04 11:22:07 -08:00
Родитель 764465d990
Коммит 5a62f4fcb4
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -542,6 +542,10 @@
container = lastSelected;
index = -1;
}
else if (resultview.isSorted()) {
// If we are into a sorted view we should append at the end
index = -1;
}
else if (!this._disallowInsertion(lastSelected) &&
lastSelected.containerOpen &&
orientation == Ci.nsITreeView.DROP_AFTER) {