| Index: ui/views/animation/ink_drop_host_view.cc
|
| diff --git a/ui/views/animation/ink_drop_host_view.cc b/ui/views/animation/ink_drop_host_view.cc
|
| index 1856e89293eba6056dd9d15d57940c5afcc7ddc9..8caafbfdec2b4cced77ec2ad2d71789b63ad4511 100644
|
| --- a/ui/views/animation/ink_drop_host_view.cc
|
| +++ b/ui/views/animation/ink_drop_host_view.cc
|
| @@ -248,7 +248,8 @@ void InkDropHostView::OnBlur() {
|
| void InkDropHostView::OnMouseEvent(ui::MouseEvent* event) {
|
| switch (event->type()) {
|
| case ui::ET_MOUSE_ENTERED:
|
| - GetInkDrop()->SetHovered(true);
|
| + if (!(event->flags() & ui::EF_CURSOR_HIDDEN))
|
| + GetInkDrop()->SetHovered(true);
|
| break;
|
| case ui::ET_MOUSE_EXITED:
|
| GetInkDrop()->SetHovered(false);
|
|
|