| Index: Source/devtools/front_end/InspectorView.js
|
| diff --git a/Source/devtools/front_end/InspectorView.js b/Source/devtools/front_end/InspectorView.js
|
| index a4b58785223da7c4dca032823e806ba13f6267a3..1fafa7ee10cb7b615c538d0ca38bffcd1cf446ab 100644
|
| --- a/Source/devtools/front_end/InspectorView.js
|
| +++ b/Source/devtools/front_end/InspectorView.js
|
| @@ -493,7 +493,7 @@ WebInspector.RootView.prototype = {
|
|
|
| doResize: function()
|
| {
|
| - var size = this.minimumSize();
|
| + var size = this.constraints().minimum;
|
| var right = Math.min(0, window.innerWidth - size.width);
|
| this.element.style.right = right + "px";
|
| var bottom = Math.min(0, window.innerHeight - size.height);
|
|
|