henry pushed to branch mullvad-browser-140.3.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser

Commits:

1 changed file:

Changes:

  • browser/components/urlbar/QuickActionsLoaderDefault.sys.mjs
    ... ... @@ -172,6 +172,10 @@ const DEFAULT_ACTIONS = {
    172 172
         l10nCommands: ["quickactions-cmd-logins"],
    
    173 173
         label: "quickactions-logins2",
    
    174 174
         onPick: openUrlFun("about:logins"),
    
    175
    +    // Disabled in base browser since saved passwords is not well supported in
    
    176
    +    // Tor Browser, and should be disabled in Mullvad Browser.
    
    177
    +    // tor-browser#44177.
    
    178
    +    disabled: () => true,
    
    175 179
       },
    
    176 180
       print: {
    
    177 181
         l10nCommands: ["quickactions-cmd-print"],
    
    ... ... @@ -192,6 +196,10 @@ const DEFAULT_ACTIONS = {
    192 196
             private: true,
    
    193 197
           });
    
    194 198
         },
    
    199
    +    // Disable in permanent private browsing. tor-browser#44177.
    
    200
    +    disabled: () => {
    
    201
    +      return lazy.PrivateBrowsingUtils.permanentPrivateBrowsing;
    
    202
    +    },
    
    195 203
       },
    
    196 204
       refresh: {
    
    197 205
         l10nCommands: ["quickactions-cmd-refresh"],