| Index: ui/views/touchui/touch_selection_controller_impl.cc
|
| diff --git a/ui/views/touchui/touch_selection_controller_impl.cc b/ui/views/touchui/touch_selection_controller_impl.cc
|
| index 763096fc90c9feddab66ea1c32c95b9dfce06b0e..2d6996813f5d4912bde3595ef52200e45b2da948 100644
|
| --- a/ui/views/touchui/touch_selection_controller_impl.cc
|
| +++ b/ui/views/touchui/touch_selection_controller_impl.cc
|
| @@ -214,8 +214,9 @@ class TouchSelectionControllerImpl::EditingHandleView
|
| kSelectionHandleVerticalDragOffset;
|
| break;
|
| case ui::ET_GESTURE_SCROLL_UPDATE: {
|
| - gfx::Point drag_pos(event->location().x(),
|
| - event->location().y() - drag_offset_);
|
| + gfx::Point drag_pos(
|
| + gfx::ToFlooredPoint(event->location()).x(),
|
| + gfx::ToFlooredPoint(event->location()).y() - drag_offset_);
|
| controller_->SelectionHandleDragged(drag_pos);
|
| break;
|
| }
|
|
|