From 6f3f5d2ea8d89f748e1f4a0b8d1f6de194f99dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Ven=C4=8Dkauskas?= Date: Tue, 14 Jun 2022 14:27:34 +0300 Subject: [PATCH] Fix alt-arrow not working on macOS when editing collection names. Fixes #2651 --- chrome/content/zotero/collectionTree.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/collectionTree.jsx b/chrome/content/zotero/collectionTree.jsx index c5e2f21f91..bb92122256 100644 --- a/chrome/content/zotero/collectionTree.jsx +++ b/chrome/content/zotero/collectionTree.jsx @@ -839,6 +839,7 @@ var CollectionTree = class CollectionTree extends LibraryTree { * @param ids {String[]} list of row ids to be highlighted */ async setHighlightedRows(ids) { + if (this._editing) return; try { this._highlightedRows = new Set();