Fix selecting last selected collection

This commit is contained in:
Dan Stillman 2016-03-12 05:03:14 -05:00
parent c4ca22ca62
commit 36db3c98b3

View file

@ -919,6 +919,10 @@ Zotero.CollectionTreeView.prototype.selectByID = Zotero.Promise.coroutine(functi
break;
}
if (found) {
return true;
}
var row = this._rowMap[type + id];
if (!row) {
return false;