diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index 9f328250576f..f91a38adbe09 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -999,9 +999,11 @@ pref("services.sync.prefs.sync.spellchecker.dictionary", true); pref("services.sync.prefs.sync.xpinstall.whitelist.required", true); #endif -// Disable the error console and inspector +// Disable the error console pref("devtools.errorconsole.enabled", false); -pref("devtools.inspector.enabled", false); + +// Enable the Inspector +pref("devtools.inspector.enabled", true); // Enable the Scratchpad tool. pref("devtools.scratchpad.enabled", true); @@ -1027,6 +1029,12 @@ pref("devtools.hud.loglimit.cssparser", 200); pref("devtools.hud.loglimit.exception", 200); pref("devtools.hud.loglimit.console", 200); +// The developer tools editor configuration: +// - tabsize: how many spaces to use when a Tab character is displayed. +// - expandtab: expand Tab characters to spaces. +pref("devtools.editor.tabsize", 4); +pref("devtools.editor.expandtab", true); + // Whether the character encoding menu is under the main Firefox button. This // preference is a string so that localizers can alter it. pref("browser.menu.showCharacterEncoding", "chrome://browser/locale/browser.properties"); diff --git a/browser/base/content/browser-sets.inc b/browser/base/content/browser-sets.inc index 1e95bbe9b41e..5e13fac7baf4 100644 --- a/browser/base/content/browser-sets.inc +++ b/browser/base/content/browser-sets.inc @@ -242,7 +242,7 @@ - diff --git a/browser/base/content/browser.xul b/browser/base/content/browser.xul index 290ae4257a0f..a060456ffadc 100644 --- a/browser/base/content/browser.xul +++ b/browser/base/content/browser.xul @@ -224,15 +224,6 @@ -