From 6602a08fc4e13232b59262270d968cdfdb5b3a82 Mon Sep 17 00:00:00 2001 From: Nicolas Chevobbe Date: Fri, 10 Apr 2020 08:55:15 +0000 Subject: [PATCH] Bug 1628346 - Enable Context Selector for the Browser Toolbox on Nightly. r=ochameau. Depends on D70356 Differential Revision: https://phabricator.services.mozilla.com/D70357 --HG-- extra : moz-landing-system : lando --- browser/app/profile/firefox.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index bfc710249b53..877f74706b82 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -2140,7 +2140,12 @@ pref("devtools.webconsole.filter.netxhr", false); pref("devtools.webconsole.input.autocomplete",true); // Show context selector in console input, in the browser toolbox -pref("devtools.webconsole.input.context", false); +#if defined(NIGHTLY_BUILD) + pref("devtools.webconsole.input.context", true); +#else + pref("devtools.webconsole.input.context", false); +#endif + // Show context selector in console input, in the content toolbox pref("devtools.contenttoolbox.webconsole.input.context", false);