| Index: Source/devtools/front_end/SidebarPane.js
|
| diff --git a/Source/devtools/front_end/SidebarPane.js b/Source/devtools/front_end/SidebarPane.js
|
| index 217d984e90610519e1c13168c688f36dfc1ec41b..154009e0fcfe3a3bfd752b9956d07e8c9066f3db 100644
|
| --- a/Source/devtools/front_end/SidebarPane.js
|
| +++ b/Source/devtools/front_end/SidebarPane.js
|
| @@ -33,6 +33,7 @@
|
| WebInspector.SidebarPane = function(title)
|
| {
|
| WebInspector.View.call(this);
|
| + this.setMinimumSize(new Size(25, 0));
|
| this.element.className = "sidebar-pane"; // Override
|
|
|
| this.titleElement = document.createElement("div");
|
| @@ -160,6 +161,7 @@ WebInspector.SidebarPaneTitle.prototype = {
|
| WebInspector.SidebarPaneStack = function()
|
| {
|
| WebInspector.View.call(this);
|
| + this.setMinimumSize(new Size(25, 0));
|
| this.element.className = "sidebar-pane-stack"; // Override
|
| this.registerRequiredCSS("sidebarPane.css");
|
| }
|
|
|