| Index: Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| diff --git a/Source/devtools/front_end/components/ObjectPropertiesSection.js b/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| index 69c0932b4e3c4cefe28a07589f826d408cbaca16..a1166a23ead6cc6dfa6f9890aae7b4c3bb528461 100644
|
| --- a/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| +++ b/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| @@ -166,7 +166,7 @@ WebInspector.ObjectPropertyTreeElement.prototype = {
|
| */
|
| ondblclick: function(event)
|
| {
|
| - if (this.property.writable || this.property.setter)
|
| + if ((this.property.writable || this.property.setter) && event.target.isSelfOrDescendant(this.valueElement))
|
| this.startEditing(event);
|
| return false;
|
| },
|
|
|