| Index: chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc
|
| diff --git a/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc b/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc
|
| index 1900df28e3b93d7fb0d8eb0a6a4337b99b858746..0b182c444ecd90d89e216c96e252bf8cb723922f 100644
|
| --- a/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc
|
| +++ b/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc
|
| @@ -1032,7 +1032,7 @@ bool AutocompletePopupContentsView::OnMousePressed(
|
| size_t index = GetIndexForPoint(event.location());
|
| model_->SetHoveredLine(index);
|
| if (HasMatchAt(index) && event.IsLeftMouseButton())
|
| - model_->SetSelectedLine(index, false);
|
| + model_->SetSelectedLine(index, false, false);
|
| }
|
| return true;
|
| }
|
| @@ -1058,7 +1058,7 @@ bool AutocompletePopupContentsView::OnMouseDragged(
|
| size_t index = GetIndexForPoint(event.location());
|
| model_->SetHoveredLine(index);
|
| if (!ignore_mouse_drag_ && HasMatchAt(index) && event.IsLeftMouseButton())
|
| - model_->SetSelectedLine(index, false);
|
| + model_->SetSelectedLine(index, false, false);
|
| }
|
| return true;
|
| }
|
|
|