Index: content/browser/renderer_host/input/gesture_text_selector.cc |
diff --git a/content/browser/renderer_host/input/gesture_text_selector.cc b/content/browser/renderer_host/input/gesture_text_selector.cc |
index d9fa90d1f5e8d5c074bf7ae1f635812e7d1b82da..bed6acfa74682d14635e2b9d22aee80146a50a53 100644 |
--- a/content/browser/renderer_host/input/gesture_text_selector.cc |
+++ b/content/browser/renderer_host/input/gesture_text_selector.cc |
@@ -49,6 +49,7 @@ bool GestureTextSelector::OnGestureEvent(const ui::GestureEventData& gesture) { |
break; |
} |
case ui::ET_GESTURE_SCROLL_UPDATE: { |
+ client_->ShowSelectionHandlesAutomatically(); |
jdduke (slow)
2014/07/25 14:07:27
Any idea why the call to |client_->ShowSelectionHa
jdduke (slow)
2014/07/25 14:25:03
I wonder if the |Unselect()| call is triggering a
Changwan Ryu
2014/07/25 22:12:47
Removed ShowSelectionHandlesAutomatically() from E
|
client_->SelectRange(anchor_x_, anchor_y_, gesture.x, gesture.y); |
break; |
} |