fx-compat: Don't focus dropdown in quick search textbox

To match old behavior and fix autofocus.
This commit is contained in:
Abe Jellinek 2022-08-01 15:22:25 -04:00
parent d018133e9b
commit f8ac57bdb1

View file

@ -68,6 +68,7 @@
let dropmarker = document.createXULElement('button');
dropmarker.id = "zotero-tb-search-menu-button";
dropmarker.tabIndex = -1;
dropmarker.setAttribute("type", "menu");
dropmarker.append(this.searchModePopup);