Temporary fix for context-menu options getting triggered on Windows

https://forums.zotero.org/discussion/105103/right-click-on-collections-or-items-not-functioning-properly-in-zotero-7
This commit is contained in:
Dan Stillman 2023-05-22 06:16:53 -04:00
parent 840a98ff40
commit 66623b945e

View file

@ -2789,6 +2789,10 @@ var ZoteroPane = new function()
await ZoteroPane.buildCollectionContextMenu();
x = x || event.clientX;
y = y || event.clientY;
// TEMP: Quick fix for https://forums.zotero.org/discussion/105103/
if (Zotero.isWin) {
x += 10;
}
openPopup(document.getElementById('zotero-collectionmenu'), x, y);
};
@ -2800,6 +2804,10 @@ var ZoteroPane = new function()
await ZoteroPane.buildItemContextMenu();
x = x || event.clientX;
y = y || event.clientY;
// TEMP: Quick fix for https://forums.zotero.org/discussion/105103/
if (Zotero.isWin) {
x += 10;
}
openPopup(document.getElementById('zotero-itemmenu'), x, y);
};