From c6d477d0d1abe9107340fc84ba77b3ab5458291d Mon Sep 17 00:00:00 2001 From: lloan Date: Thu, 5 Sep 2019 14:30:58 +0000 Subject: [PATCH] Bug 1574430 - Enabling Search in Nightly. r=Honza. Differential Revision: https://phabricator.services.mozilla.com/D44841 --HG-- extra : moz-landing-system : lando --- browser/app/profile/firefox.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index bc120d8afd72c..7988c5522d91b 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -2108,8 +2108,12 @@ pref("devtools.serviceWorkers.testing.enabled", false); // Enable the Network Monitor pref("devtools.netmonitor.enabled", true); -// Enable Network Search -pref("devtools.netmonitor.features.search", false); +// Enable Network Search in Nightly builds. +#if defined(NIGHTLY_BUILD) + pref("devtools.netmonitor.features.search", true); +#else + pref("devtools.netmonitor.features.search", false); +#endif // Enable the Application panel pref("devtools.application.enabled", false);