mirror of
https://github.com/zotero/zotero.git
synced 2026-09-17 23:51:18 +00:00
Do not activate item on twisty dblclick. Closes #3507
This commit is contained in:
parent
8a66fc02fe
commit
5a0f369f0b
1 changed files with 2 additions and 0 deletions
|
|
@ -2696,6 +2696,8 @@ var ItemTree = class ItemTree extends LibraryTree {
|
|||
twisty.addEventListener('mousedown', event => event.stopPropagation());
|
||||
twisty.addEventListener('mouseup', event => this.handleTwistyMouseUp(event, index),
|
||||
{ passive: true });
|
||||
twisty.addEventListener('dblclick', event => event.stopImmediatePropagation(),
|
||||
{ passive: true });
|
||||
}
|
||||
|
||||
const icon = this._getIcon(index);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue