Bug 1467564 - Only show the 3 pane tooltip in release or beta. r=pbro

This commit is contained in:
Gabriel Luong 2018-06-08 08:51:59 -04:00
parent 34c03a8f17
commit 24c0e82364

View File

@ -36,8 +36,12 @@ pref("devtools.inspector.enabled", true);
pref("devtools.inspector.activeSidebar", "ruleview");
pref("devtools.inspector.remote", false);
// Show the 3 pane onboarding tooltip in the inspector
// Show the 3 pane onboarding tooltip in the inspector only in release or beta builds.
#if defined(RELEASE_OR_BETA)
pref("devtools.inspector.show-three-pane-tooltip", true);
#else
pref("devtools.inspector.show-three-pane-tooltip", false);
#endif
// Enable the 3 pane mode in the inspector
pref("devtools.inspector.three-pane-enabled", true);