Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(759)

Unified Diff: chrome/browser/ui/views/tabs/tab_strip.cc

Issue 10823165: Fixes bug where tabstrip won't correctly enter into stacking mode on (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tabs/tab_strip.cc
diff --git a/chrome/browser/ui/views/tabs/tab_strip.cc b/chrome/browser/ui/views/tabs/tab_strip.cc
index 90c9a91ce14bef21643e82ba2f9e4f46f11994de..c73afe636af86db0fdedc8ad8e63a5884b19e4fa 100644
--- a/chrome/browser/ui/views/tabs/tab_strip.cc
+++ b/chrome/browser/ui/views/tabs/tab_strip.cc
@@ -1024,7 +1024,7 @@ void TabStrip::MaybeStartDrag(
#endif
// Gestures don't automatically do a capture. We don't allow multiple drags at
// the same time, so we explicitly capture.
- if (event.type() == ui::ET_GESTURE_TAP_DOWN)
+ if (event.type() == ui::ET_GESTURE_BEGIN)
sadrul 2012/08/03 21:38:07 Is it necessary to check that event.details().touc
GetWidget()->SetCapture(this);
drag_controller_.reset(new TabDragController);
drag_controller_->Init(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698