Commit 6e5e8ee5 authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame 🎃
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 11c764d8
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;
      }