| Index: chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| diff --git a/chrome/browser/ui/views/toolbar/browser_actions_container.cc b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| index 6e24af64c0a6ee3ba8fd40e6e67554b4291b3203..a0e2a3b7c0f980f678aad46c266c17228e65971a 100644
|
| --- a/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| +++ b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| @@ -286,7 +286,8 @@ void BrowserActionsContainer::OnDragEntered(
|
| int BrowserActionsContainer::OnDragUpdated(
|
| const ui::DropTargetEvent& event) {
|
| // First check if we are above the chevron (overflow) menu.
|
| - if (GetEventHandlerForPoint(event.location()) == chevron_) {
|
| + if (GetEventHandlerForPoint(gfx::ToFlooredPoint(event.location())) ==
|
| + chevron_) {
|
| if (!show_menu_task_factory_.HasWeakPtrs() && !overflow_menu_)
|
| StartShowFolderDropMenuTimer();
|
| return ui::DragDropTypes::DRAG_MOVE;
|
|
|