Bug 1627023 - Enable browser UI version of RDM in Dev Edition. r=bradwerth

Differential Revision: https://phabricator.services.mozilla.com/D74914
This commit is contained in:
Micah Tigley 2020-05-12 18:41:22 +00:00
Родитель 52792dc151
Коммит e01061d66a
1 изменённых файлов: 7 добавлений и 3 удалений

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

@ -2259,13 +2259,17 @@ pref("devtools.responsive.metaViewport.enabled", true);
// The user agent of the viewport.
pref("devtools.responsive.userAgent", "");
// Show the custom user agent input and browser embedded RDM UI in
// Nightly builds.
// Show the custom user agent input only in Nightly.
#if defined(NIGHTLY_BUILD)
pref("devtools.responsive.showUserAgentInput", true);
pref("devtools.responsive.browserUI.enabled", true);
#else
pref("devtools.responsive.showUserAgentInput", false);
#endif
// Show the RDM browser UI in Nightly or DevEdition builds.
#if defined(NIGHTLY_BUILD) || defined(MOZ_DEV_EDITION)
pref("devtools.responsive.browserUI.enabled", true);
#else
pref("devtools.responsive.browserUI.enabled", false);
#endif