author | Mike Conley <mconley@mozilla.com> |
Tue, 11 Mar 2014 12:44:18 -0400 | |
changeset 173121 | e905debc9d6a9927c724c0798c773b7d953509be |
parent 173120 | dc70958e9a46a4a936670e60f9f41d299f7b7aa8 |
child 173122 | e1f1f275f9021b76c20a3b3d5ab09de1a654f4c1 |
push id | 26391 |
push user | cbook@mozilla.com |
push date | Wed, 12 Mar 2014 11:20:34 +0000 |
treeherder | mozilla-central@a56837cfc67c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 980639 |
milestone | 30.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
browser/components/customizableui/src/CustomizeMode.jsm | file | annotate | diff | comparison | revisions |
--- a/browser/components/customizableui/src/CustomizeMode.jsm +++ b/browser/components/customizableui/src/CustomizeMode.jsm @@ -332,16 +332,17 @@ CustomizeMode.prototype = { } this._removeExtraToolbarsIfEmpty(); CustomizableUI.removeListener(this); this.document.removeEventListener("keypress", this); this.window.PanelUI.menuButton.removeEventListener("mousedown", this); + this.window.PanelUI.menuButton.open = false; this.window.PanelUI.beginBatchUpdate(); this._removePanelCustomizationPlaceholders(); let window = this.window; let document = this.document; let documentElement = document.documentElement; @@ -420,17 +421,16 @@ CustomizeMode.prototype = { // And drop all area references. this.areas = []; // Let everybody in this window know that we're starting to // exit customization mode. CustomizableUI.dispatchToolboxEvent("customizationending", {}, window); window.PanelUI.setMainView(window.PanelUI.mainView); - window.PanelUI.menuButton.open = false; window.PanelUI.menuButton.disabled = false; let customizeButton = document.getElementById("PanelUI-customize"); customizeButton.setAttribute("exitLabel", customizeButton.getAttribute("label")); customizeButton.setAttribute("label", customizeButton.getAttribute("enterLabel")); customizeButton.setAttribute("exitTooltiptext", customizeButton.getAttribute("tooltiptext")); customizeButton.setAttribute("tooltiptext", customizeButton.getAttribute("enterTooltiptext"));