Skip to content

Commit

Permalink
Treat QuickSearch box as text input in Thunderbird 128
Browse files Browse the repository at this point in the history
This box changed names once again. It would be nice to have a more
reliable way of detecting text inputs.
  • Loading branch information
wshanks committed Jul 21, 2024
1 parent 568a5d4 commit 7d6c5c7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions addon/implementation.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ function stopCallback(e, element, combo, seq) {
tagName == "html:textarea" ||
tagName == "browser" ||
tagName == "global-search-bar" ||
tagName == "search-bar" ||
(element.contentEditable && element.contentEditable == "true");

if (!isText && element.contentEditable == "inherit") {
Expand Down

0 comments on commit 7d6c5c7

Please sign in to comment.