| Index: third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js b/third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js
|
| index f0f76cf6b43a12efdf028f07742f6ed9af8b6f0b..0364441afb78c9994e0ae2576c003908f8286a79 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js
|
| @@ -250,8 +250,10 @@ TextEditor.TextEditorAutocompleteController = class {
|
| this._onSuggestionsShownForTest([]);
|
| return;
|
| }
|
| - if (!this._suggestBox)
|
| + if (!this._suggestBox) {
|
| this._suggestBox = new UI.SuggestBox(this, 20, this._config.captureEnter);
|
| + this._suggestBox.setDefaultSelectionIsDimmed(!!this._config.captureEnter);
|
| + }
|
|
|
| var oldQueryRange = this._queryRange;
|
| this._queryRange = queryRange;
|
|
|