| Index: chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc b/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| index 094f1d0f660a46775fc24e78e9d22eafd84f4d91..44845e01404d0aa646c3e06942d07c8b36fa60ec 100644
|
| --- a/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| @@ -209,7 +209,7 @@ bool BrowserNonClientFrameView::DoesIntersectRect(const views::View* target,
|
| View::ConvertRectToTarget(this, tabstrip, &rect_in_tabstrip_coords_f);
|
| gfx::Rect rect_in_tabstrip_coords =
|
| gfx::ToEnclosingRect(rect_in_tabstrip_coords_f);
|
| - if (rect_in_tabstrip_coords.bottom() > tabstrip->GetLocalBounds().bottom()) {
|
| + if (rect_in_tabstrip_coords.y() >= tabstrip->GetLocalBounds().bottom()) {
|
| // |rect| is below the tabstrip.
|
| return false;
|
| }
|
|
|