Bug 886444 - Should not stop people dragging the window from toolbars while customizing, r=mconley

This commit is contained in:
Gijs Kruitbosch 2013-07-17 18:05:58 +02:00
parent b6d2c03de3
commit 9befe7f00f

View File

@ -332,9 +332,7 @@
Components.utils.import("resource://gre/modules/WindowDraggingUtils.jsm", tmp);
let draggableThis = new tmp.WindowDraggingElement(this);
draggableThis.mouseDownCheck = function(e) {
// Don't move while customizing.
return this._dragBindingAlive &&
this.getAttribute("customizing") != "true";
return this._dragBindingAlive;
};
} catch (e) {}
}