| Index: Source/devtools/front_end/elements/ElementsTreeOutline.js
|
| diff --git a/Source/devtools/front_end/elements/ElementsTreeOutline.js b/Source/devtools/front_end/elements/ElementsTreeOutline.js
|
| index 405589795aaccc8ed52b2986b8a749da397196cb..556c9dee0e68f1fa25462e9b71bce4f2b25edd4c 100644
|
| --- a/Source/devtools/front_end/elements/ElementsTreeOutline.js
|
| +++ b/Source/devtools/front_end/elements/ElementsTreeOutline.js
|
| @@ -1460,6 +1460,8 @@ WebInspector.ElementsTreeElement.prototype = {
|
| */
|
| select: function(omitFocus, selectedByUser)
|
| {
|
| + if (this._editing)
|
| + return false;
|
| if (this.treeOutline._handlePickNode(this.title, this._node))
|
| return true;
|
| return TreeElement.prototype.select.call(this, omitFocus, selectedByUser);
|
|
|