| Index: ash/wm/gestures/overview_gesture_handler.cc
|
| diff --git a/ash/wm/gestures/overview_gesture_handler.cc b/ash/wm/gestures/overview_gesture_handler.cc
|
| index 381941d1fe9a62cbe524f7ffeb0abb3dccdf11e1..7777232ebc7070e585d639af2c9b89e50af467f1 100644
|
| --- a/ash/wm/gestures/overview_gesture_handler.cc
|
| +++ b/ash/wm/gestures/overview_gesture_handler.cc
|
| @@ -82,7 +82,7 @@ bool OverviewGestureHandler::ProcessGestureEvent(
|
| // Detect at the beginning of any gesture whether it begins on the top bezel.
|
| if (event.type() == ui::ET_GESTURE_BEGIN &&
|
| event.details().touch_points() == 1) {
|
| - gfx::Point point_in_screen(event.location());
|
| + gfx::Point point_in_screen(gfx::ToFlooredPoint(event.location()));
|
| aura::Window* target = static_cast<aura::Window*>(event.target());
|
| wm::ConvertPointToScreen(target, &point_in_screen);
|
| in_top_bezel_gesture_ = !Shell::GetScreen()->GetDisplayNearestPoint(
|
|
|