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

Unified Diff: ash/wm/system_gesture_event_filter.cc

Issue 10533029: Fix TAP_DOWN gesture event: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
Index: ash/wm/system_gesture_event_filter.cc
diff --git a/ash/wm/system_gesture_event_filter.cc b/ash/wm/system_gesture_event_filter.cc
index 99945eab8db154bd47d5d8cd69142e3d98c8321a..837e4cf25008e8df8d741693f14db9b3d166beb3 100644
--- a/ash/wm/system_gesture_event_filter.cc
+++ b/ash/wm/system_gesture_event_filter.cc
@@ -260,7 +260,7 @@ class SystemPinchHandler {
return SYSTEM_GESTURE_END;
switch (event.type()) {
- case ui::ET_GESTURE_TAP_UP: {
+ case ui::ET_GESTURE_END: {
if (event.delta_x() > kSystemPinchPoints)
break;

Powered by Google App Engine
This is Rietveld 408576698