Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(677)

Unified Diff: third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js

Issue 2742573007: DevTools: initial console suggestion should be greyed out (Closed)
Patch Set: use another css Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698