Index: third_party/WebKit/Source/devtools/front_end/ui/StackView.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/StackView.js b/third_party/WebKit/Source/devtools/front_end/ui/StackView.js |
index 47ad01e51f22becf98d04017f91c27036ff1f808..f6f7c728cf626513f6f943cff4f44ced860c352c 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/ui/StackView.js |
+++ b/third_party/WebKit/Source/devtools/front_end/ui/StackView.js |
@@ -64,9 +64,12 @@ WebInspector.StackView.prototype = { |
return lastSplitWidget; |
}, |
+ /** |
+ * @override |
+ */ |
detachChildWidgets: function() |
{ |
- WebInspector.Widget.prototype.detachChildWidgets.call(this); |
+ super.detachChildWidgets(this); |
dgozman
2016/11/01 00:04:07
remove this.
|
this._currentSplitWidget = null; |
}, |