Richard Pospesel pushed to branch tor-browser-102.11.0esr-12.5-1 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • browser/components/torcircuit/content/torCircuitPanel.js
    ... ... @@ -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 => {