diff options
Diffstat (limited to 'chrome/browser/gtk/location_bar_view_gtk.cc')
-rw-r--r-- | chrome/browser/gtk/location_bar_view_gtk.cc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/chrome/browser/gtk/location_bar_view_gtk.cc b/chrome/browser/gtk/location_bar_view_gtk.cc index 65d749d..dcd5925 100644 --- a/chrome/browser/gtk/location_bar_view_gtk.cc +++ b/chrome/browser/gtk/location_bar_view_gtk.cc @@ -536,11 +536,12 @@ void LocationBarViewGtk::OnChanged() { if (update_instant_ && instant && GetTabContents()) { if (location_entry_->model()->user_input_in_progress() && location_entry_->model()->popup_model()->IsOpen()) { - instant->Update(browser_->GetSelectedTabContentsWrapper(), - location_entry_->model()->CurrentMatch(), - WideToUTF16(location_entry_->GetText()), - false, // TODO: make this real - &suggested_text); + instant->Update( + browser_->GetSelectedTabContentsWrapper(), + location_entry_->model()->CurrentMatch(), + WideToUTF16(location_entry_->GetText()), + location_entry_->model()->UseVerbatimInstant(), + &suggested_text); } else { instant->DestroyPreviewContents(); } |