Make PDF reader File menu "Show in Library" option to show parent item

Fixes #2266
This commit is contained in:
Martynas Bagdonas 2021-12-09 15:30:33 +02:00
parent aefd3dd94a
commit 86965988b4

View file

@ -276,7 +276,9 @@ class ReaderInstance {
else if (cmd === 'showInLibrary') {
let win = Zotero.getMainWindow();
if (win) {
win.ZoteroPane.selectItems([this._itemID]);
let item = Zotero.Items.get(this._itemID);
let id = item.parentID || item.id;
win.ZoteroPane.selectItems([id]);
win.Zotero_Tabs.select('zotero-pane');
win.focus();
}