Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| index 30c757486cb9a2b913ef40a8078cfb7bc8e54c4a..bb5bcc6822bbbd5bf8efdc423a1605c36a2c444e 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| @@ -2729,7 +2729,7 @@ WebInspector.StylesSidebarPane.CSSPropertyPrompt.prototype = { |
| } |
| break; |
| case "Enter": |
| - if (this.autoCompleteElement && !this.autoCompleteElement.textContent.length) { |
| + if (this.autoCompleteElement && this.autoCompleteElement.textContent.length) { |
|
pfeldman
2016/01/28 00:10:16
This change is somewhat subtle. It might interfere
samli
2016/01/28 00:22:50
Done.
|
| this.tabKeyPressed(); |
| return; |
| } |