Verified Commit 58d1dbda authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame 🎃 Committed by ma1
Browse files

MB 87: Disable the default browser box on Windows and Linux

Windows and Linux will be distributed only as portable apps at the
beginning, so they should not be settable as default browsers.
We will need to improve the logic once we decide to ship system-wide
installers, too.
parent e6a2e35b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1742,7 +1742,9 @@ var gMainPane = {
      let defaultBrowserBox = document.getElementById("defaultBrowserBox");
      let isInFlatpak = gGIOService?.isRunningUnderFlatpak;
      // Flatpak does not support setting nor detection of default browser
      if (!shellSvc || isInFlatpak) {
      // privacy-browser#87: Let's keep the default browser box only on macOS
      // for now.
      if (!shellSvc || isInFlatpak || Services.appinfo.OS !== "Darwin") {
        defaultBrowserBox.hidden = true;
        return;
      }