Skip to main content
Sign in
Snippets Groups Projects
Commit 6e5e8ee5 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 11c764d8
Branches
Tags
1 merge request!110MB 273: Rebased stable onto Base Browser 13.0 115.9.0esr
......@@ -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