Bug 1628346 - Enable Context Selector for the Browser Toolbox on Nightly. r=ochameau.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Nicolas Chevobbe 2020-04-10 13:52:19 +00:00
Родитель f82c8d1832
Коммит d41c6c32ac
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -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);