Fix inability to right-click a metadata field (to access text transform options) on Windows
This commit is contained in:
parent
65ff7e6c3f
commit
c25dc1e8ec
|
@ -900,7 +900,7 @@ var ZoteroItemPane = new function()
|
|||
if (!noedit){
|
||||
valueElement.setAttribute('flex', 1);
|
||||
valueElement.setAttribute('ztabindex', tabindex);
|
||||
valueElement.setAttribute('onclick', 'ZoteroItemPane.showEditor(this)');
|
||||
valueElement.setAttribute('onclick', '/* Skip right-click on Windows */ if (event.button) { return; } ZoteroItemPane.showEditor(this)');
|
||||
valueElement.className = 'zotero-clicky';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user