Chromium Code Reviews| 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..25c6b226537c399a6fe6ec6a41f44dcffa507dc3 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.setUserInteractionStyling(!!this._config.captureEnter); |
|
dgozman
2017/03/11 00:00:24
setDefaultSelectionIsDimmed
lushnikov
2017/03/11 00:09:59
Done.
|
| + } |
| var oldQueryRange = this._queryRange; |
| this._queryRange = queryRange; |