Pier Angelo Vendrame pushed to branch tor-browser-115.3.0esr-13.0-1 at The Tor 
Project / Applications / Tor Browser


Commits:
c6b08be6 by Richard Pospesel at 2023-09-19T21:46:39+00:00
Bug 41822: Unconditionally disable default browser UX in about:preferences

- - - - -


1 changed file:

- browser/components/preferences/main.js


Changes:

=====================================
browser/components/preferences/main.js
=====================================
@@ -1735,7 +1735,8 @@ var gMainPane = {
       let defaultBrowserBox = document.getElementById("defaultBrowserBox");
       let isInFlatpak = gGIOService?.isRunningUnderFlatpak;
       // Flatpak does not support setting nor detection of default browser
-      if (!shellSvc || isInFlatpak) {
+      // tor-browser#41822 disable making Tor Browser the default browser
+      if (shellSvc || isInFlatpak || true) {
         defaultBrowserBox.hidden = true;
         return;
       }



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c6b08be6b983f633740393b259880d936f9a6f91

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c6b08be6b983f633740393b259880d936f9a6f91
You're receiving this email because of your account on gitlab.torproject.org.


_______________________________________________
tor-commits mailing list
[email protected]
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits

Reply via email to