From 9feb2fc6cf1f2bd13c2861186963e050edd3a439 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 07899b69a2..156c7c4197 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();