From 88096ac76a618204b81d978e9becbc6100eda51d Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 5 Dec 2016 21:34:36 -0500 Subject: [PATCH] Fix context menu auto-selection bug A context-menu entry was being selected automatically when the click target was near the bottom of the screen. --- chrome/content/zotero/zoteroPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index eccc54865..d078b2992 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -2988,7 +2988,7 @@ var ZoteroPane = new function() ZoteroPane_Local.buildItemContextMenu() .then(function () { document.getElementById('zotero-itemmenu').openPopup( - null, null, event.clientX, event.clientY, true, false, event + null, null, event.clientX + 1, event.clientY + 1, true, false, event ); }) });