Reopen targeted collection on window open if closed at save time (macOS)

This commit is contained in:
Dan Stillman 2018-03-30 01:55:04 -04:00
parent 5a08d22dbf
commit 37e850c67b

View File

@ -134,15 +134,18 @@ Zotero.Server.Connector.SaveSession.prototype.update = async function (libraryID
// Select new destination in collections pane
var win = Zotero.getActiveZoteroPane();
if (collectionID) {
var targetID = "C" + collectionID;
}
else {
var targetID = "L" + libraryID;
}
if (win && win.collectionsView) {
if (collectionID) {
var targetID = "C" + collectionID;
}
else {
var targetID = "L" + libraryID;
}
await win.collectionsView.selectByID(targetID);
}
else {
Zotero.Prefs.set('lastViewedFolder', targetID);
}
await this._updateObjects(this._objects);