tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 4d2242c435e3a912801bed6b65451cdfeb2c5746
parent 10576ac82f053161a38fd96c17c8c45f4b1b55f3
Author: Sarah Clements <sclements@mozilla.com>
Date:   Tue, 16 Dec 2025 14:19:48 +0000

Bug 2006193 - Enable splitview tab menu option in Nightly r=kcochrane

Differential Revision: https://phabricator.services.mozilla.com/D276637

Diffstat:
Mbrowser/app/profile/firefox.js | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js @@ -2670,7 +2670,11 @@ pref("browser.tabs.fadeOutExplicitlyUnloadedTabs", true); pref("browser.tabs.fadeOutUnloadedTabs", false); // Whether tabs can be "split" or displayed side by side at once. -pref("browser.tabs.splitView.enabled", false); +#ifdef NIGHTLY_BUILD + pref("browser.tabs.splitView.enabled", true); +#else + pref("browser.tabs.splitView.enabled", false); +#endif // Whether SVG favicons should be safely re-encoded using the moz-remote-image:// protocol. pref("browser.tabs.remoteSVGIconDecoding", false);