| Index: chrome/browser/ui/views/location_bar/bubble_icon_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/bubble_icon_view.cc b/chrome/browser/ui/views/location_bar/bubble_icon_view.cc
|
| index 68949b4b160a48130c4fb31599daf7028c4684b2..d541f2b39b05061da610216415f4740414071796 100644
|
| --- a/chrome/browser/ui/views/location_bar/bubble_icon_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/bubble_icon_view.cc
|
| @@ -49,7 +49,8 @@ void BubbleIconView::OnMouseReleased(const ui::MouseEvent& event) {
|
| return;
|
| }
|
|
|
| - if (event.IsOnlyLeftMouseButton() && HitTestPoint(event.location())) {
|
| + if (event.IsOnlyLeftMouseButton() &&
|
| + HitTestPoint(gfx::ToFlooredPoint(event.location()))) {
|
| OnExecuting(EXECUTE_SOURCE_MOUSE);
|
| command_updater_->ExecuteCommand(command_id_);
|
| }
|
|
|