Index: chrome/browser/ui/views/tabs/touch_tab_strip_layout.cc |
diff --git a/chrome/browser/ui/views/tabs/touch_tab_strip_layout.cc b/chrome/browser/ui/views/tabs/touch_tab_strip_layout.cc |
index e7f58559daf3a7a1ff5d9f18ea943f7286ee087c..f41a3136ba68ace240b88f193c029b924ef4a0e0 100644 |
--- a/chrome/browser/ui/views/tabs/touch_tab_strip_layout.cc |
+++ b/chrome/browser/ui/views/tabs/touch_tab_strip_layout.cc |
@@ -156,7 +156,8 @@ void TouchTabStripLayout::MoveTab(int from, |
} |
bool TouchTabStripLayout::IsStacked(int index) const { |
- if (index == active_index() || tab_count() == mini_tab_count_) |
+ if (index == active_index() || tab_count() == mini_tab_count_ || |
+ index < mini_tab_count_) |
return false; |
if (index > active_index()) |
return ideal_x(index) != ideal_x(index - 1) + tab_offset(); |