cookie list doesn't scroll when last visible cookie is deleted, r=jag, sr=alecf

git-svn-id: svn://10.0.0.236/trunk@204299 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
morse%netscape.com 2006-07-27 14:48:38 +00:00
parent 74bfde8bd0
commit 8c0fb0539f

View File

@ -67,6 +67,9 @@ function DeleteSelectedItemFromOutliner
// redisplay
var box = outliner.outlinerBoxObject;
var firstRow = box.getFirstVisibleRow();
if (firstRow > (table.length-1) ) {
firstRow = table.length-1;
}
view.rowCount = table.length;
box.rowCountChanged(0, table.length);
box.scrollToRow(firstRow)