henry pushed to branch tor-browser-153.1.0esr-16.0-1 at The Tor Project / Applications / Tor Browser Commits: 302fdf3e by Henry Wilkes at 2026-08-13T16:31:17+01: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: @@ -426,6 +427,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/tor-browser/-/commit/302fdf3e... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/302fdf3e... 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