| Index: ash/system/tray/actionable_view.cc
|
| diff --git a/ash/system/tray/actionable_view.cc b/ash/system/tray/actionable_view.cc
|
| index dc26cde928da8d473876362597d568829251b19e..874d274cd78977070a1e4d816518e95797efcaa1 100644
|
| --- a/ash/system/tray/actionable_view.cc
|
| +++ b/ash/system/tray/actionable_view.cc
|
| @@ -50,7 +50,8 @@ bool ActionableView::OnMousePressed(const ui::MouseEvent& event) {
|
| }
|
|
|
| void ActionableView::OnMouseReleased(const ui::MouseEvent& event) {
|
| - if (has_capture_ && GetLocalBounds().Contains(event.location()))
|
| + if (has_capture_ &&
|
| + GetLocalBounds().Contains(gfx::ToFlooredPoint(event.location())))
|
| PerformAction(event);
|
| }
|
|
|
|
|