Skip to content
Snippets Groups Projects
Verified Commit 2901c13e authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame :jack_o_lantern:
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 33c82eaa
Branches
Tags
1 merge request!100MB 260: Rebased MB release onto 115.7.0
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment