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

Unified Diff: chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc

Issue 6731036: Enabled pressing TAB to cycle through the Omnibox results. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Enabled pressing TAB to cycle through the Omnibox results, removed moving the caret to the Created 9 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
Index: chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc
===================================================================
--- chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc (revision 79782)
+++ chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc (working copy)
@@ -1685,7 +1685,7 @@
// Trigger Tab to search behavior only when Tab key is pressed.
Peter Kasting 2011/04/01 00:09:09 You need to rework this function in a similar way
if (model_->is_keyword_hint())
- handled = model_->AcceptKeyword();
+ handled = model_->AcceptKeyword(true);
#if GTK_CHECK_VERSION(2, 20, 0)
if (!handled && !preedit_.empty())

Powered by Google App Engine
This is Rietveld 408576698