commit 77eadc3ea097571484a7c4f94ef370188561596d
parent 4535b220db89dfbb9616bfd11381c86cb5ba6b42
Author: David Norton <david@nortoncrew.com>
Date: Mon, 26 Jun 2006 18:41:58 +0000
Treeview: Fixes problem with added items
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/chromeFiles/content/scholar/itemTreeView.js b/chrome/chromeFiles/content/scholar/itemTreeView.js
@@ -116,7 +116,7 @@ Scholar.ItemTreeView.prototype.notify = function(action, type, ids)
if((this._itemGroup.isLibrary() || item.inCollection(this._itemGroup.ref.getID())) && this._itemRowMap[ids] == null)
{
- this._showItem(item,this.rowCount);
+ this._showItem(new Scholar.ItemTreeView.TreeRow('item',item,null,0,false),this.rowCount);
this._treebox.rowCountChanged(this.rowCount-1,1);
madeChanges = true;