[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-102.11.0esr-12.5-1] fixup! Bug 41600: Add a tor circuit display panel.



Title: GitLab

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
    fixup! Bug 41600: Add a tor circuit display panel.
    
    Bug 41770 - Stop blocking event propagation of keydown events that we do
    not handle. This lets the arrow key events pass on to
    ToolbarKeyboardNavigator.
    

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 => {
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits