Richard Pospesel pushed to branch tor-browser-102.11.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
-
9f9de549
by Henry Wilkes at 2023-05-09T14:54:55+01:00
1 changed file:
Changes:
... | ... | @@ -221,10 +221,10 @@ var gTorCircuitPanel = { |
221 | 221 | // rather than a <html:button>, or <xul:toolbarbutton>, so we need to set up
|
222 | 222 | // listeners for both "click" and "keydown", and not for "command".
|
223 | 223 | this.toolbarButton.addEventListener("keydown", event => {
|
224 | - event.stopPropagation();
|
|
225 | 224 | if (event.key !== "Enter" && event.key !== " ") {
|
226 | 225 | return;
|
227 | 226 | }
|
227 | + event.stopPropagation();
|
|
228 | 228 | this.show();
|
229 | 229 | });
|
230 | 230 | this.toolbarButton.addEventListener("click", event => {
|