From 195ea2a9da1080c691821aacfce5076cbe265322 Mon Sep 17 00:00:00 2001 From: Richard Marti Date: Tue, 1 Feb 2022 12:25:20 +0200 Subject: [PATCH] Bug 1752686 - Port bug 1746830 and bug 1746831 - Add option to the Settings panel for toggling custom formatters. r=darktrojan Differential Revision: https://phabricator.services.mozilla.com/D137381 --HG-- extra : amend_source : afa4921a87eaded002e0de39ef0fc47a64f566a9 --- mail/app/profile/all-thunderbird.js | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/mail/app/profile/all-thunderbird.js b/mail/app/profile/all-thunderbird.js index 1b3d37266d..24f9133d17 100644 --- a/mail/app/profile/all-thunderbird.js +++ b/mail/app/profile/all-thunderbird.js @@ -907,7 +907,6 @@ pref("devtools.browsertoolbox.fission", false); pref("devtools.command-button-pick.enabled", true); pref("devtools.command-button-frames.enabled", true); pref("devtools.command-button-splitconsole.enabled", true); -pref("devtools.command-button-paintflashing.enabled", false); pref("devtools.command-button-responsive.enabled", true); pref("devtools.command-button-screenshot.enabled", false); pref("devtools.command-button-rulers.enabled", false); @@ -1052,6 +1051,13 @@ pref("devtools.netmonitor.features.requestBlocking", true); // Enable the Application panel pref("devtools.application.enabled", false); +// Enable the custom formatters feature +// TODO remove once the custom formatters feature is stable (see bug 1734614) +pref("devtools.custom-formatters", false); +// This preference represents the user's choice to enable the custom formatters feature. +// While the preference above will be removed once the feature is stable, this one is menat to stay. +pref("devtools.custom-formatters.enabled", false); + // The default Network Monitor UI settings pref("devtools.netmonitor.panes-network-details-width", 550); pref("devtools.netmonitor.panes-network-details-height", 450); @@ -1132,9 +1138,6 @@ pref("devtools.webconsole.input.autocomplete",true); pref("devtools.webconsole.input.context", false); #endif -// Show context selector in console input, in the content toolbox -pref("devtools.contenttoolbox.webconsole.input.context", false); - // Set to true to eagerly show the results of webconsole terminal evaluations // when they don't have side effects. pref("devtools.webconsole.input.eagerEvaluation", true); @@ -1229,13 +1232,8 @@ pref("devtools.responsive.reloadConditions.userAgent", false); pref("devtools.responsive.reloadNotification.enabled", true); // Whether or not touch simulation is enabled. pref("devtools.responsive.touchSimulation.enabled", false); -// Whether or not meta viewport is enabled, if and only if touchSimulation -// is also enabled. -pref("devtools.responsive.metaViewport.enabled", false); // The user agent of the viewport. pref("devtools.responsive.userAgent", ""); -// Whether or not the RDM UI is embedded in the browser. -pref("devtools.responsive.browserUI.enabled", false); // Show the custom user agent input in Nightly builds. #if defined(NIGHTLY_BUILD)