Index: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js |
index f2e23b754bc6eb51c58f355b1cf87f28dfe62136..026c0211e9b2715907aab7e6001506cc1d015ddd 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js |
@@ -75,7 +75,7 @@ WebInspector.WatchExpressionsSidebarPane.prototype = { |
*/ |
addExpression: function(expressionString) |
{ |
- this.expand(); |
+ this.expandPane(); |
if (this._requiresUpdate) { |
this._rebuildWatchExpressions(); |
delete this._requiresUpdate; |
@@ -87,7 +87,7 @@ WebInspector.WatchExpressionsSidebarPane.prototype = { |
expandIfNecessary: function() |
{ |
if (this._watchExpressionsSetting.get().length) |
- this.expand(); |
+ this.expandPane(); |
}, |
_saveExpressions: function() |
@@ -116,7 +116,7 @@ WebInspector.WatchExpressionsSidebarPane.prototype = { |
{ |
if (event) |
event.consume(true); |
- this.expand(); |
+ this.expandPane(); |
this._createWatchExpression(null).startEditing(); |
}, |