| Index: chrome/browser/views/tabs/tab_strip.cc
|
| ===================================================================
|
| --- chrome/browser/views/tabs/tab_strip.cc (revision 10904)
|
| +++ chrome/browser/views/tabs/tab_strip.cc (working copy)
|
| @@ -503,6 +503,11 @@
|
| if (v == this)
|
| return true;
|
|
|
| + // If the point is within the bounds of a Tab, the point can be considered
|
| + // part of the caption if there are no available drag operations for the Tab.
|
| + if (v->GetClassName() == Tab::kTabClassName && !HasAvailableDragActions())
|
| + return true;
|
| +
|
| // Check to see if the point is within the non-button parts of the new tab
|
| // button. The button has a non-rectangular shape, so if it's not in the
|
| // visual portions of the button we treat it as a click to the caption.
|
|
|