Pier Angelo Vendrame pushed to branch mullvad-browser-153.1.0esr-16.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 61089e28 by Henry Wilkes at 2026-08-17T09:36:39+02:00 fixup! BB 44711: Hide unwanted setting controls in Base Browser. BB 44831: Hide the search suggestions private browsing banner. - - - - - 1 changed file: - browser/components/preferences/config/search.mjs Changes: ===================================== browser/components/preferences/config/search.mjs ===================================== @@ -12,6 +12,7 @@ const { XPCOMUtils } = ChromeUtils.importESModule( const lazy = XPCOMUtils.declareLazy({ AddonSearchEngine: "moz-src:///toolkit/components/search/AddonSearchEngine.sys.mjs", + AppConstants: "resource://gre/modules/AppConstants.sys.mjs", ConfigSearchEngine: "moz-src:///toolkit/components/search/ConfigSearchEngine.sys.mjs", CustomizableUI: @@ -428,6 +429,11 @@ Preferences.addSetting({ id: "urlBarSuggestionPermanentPBMessage", deps: ["urlBarSuggestionCheckbox", "permanentPBEnabledPref"], visible: deps => { + // Hide since the wording is misleading about the default history settings. + // tor-browser#44831. + if (lazy.AppConstants.BASE_BROWSER_VERSION) { + return false; + } return ( deps.urlBarSuggestionCheckbox.visible && deps.permanentPBEnabledPref.value ); View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/6108... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/6108... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help