DO NOT MERGE copy selected text on tap

Change-Id: I4175a3e66cda7f26353fbbd98e65639fd91b2bb9
http://b/2626451
This commit is contained in:
Cary Clark
2010-08-26 17:36:01 -04:00
parent bc5d9d2254
commit 4e43744301

View File

@@ -5161,13 +5161,10 @@ public class WebView extends AbsoluteLayout
}
} else {
if (mSelectingText) {
// tapping on selection or controls does nothing
if (!nativeHitSelection(contentX, contentY)) {
if (mMapTrackballToArrowKeys) { // gmail
copySelection();
}
selectionDone();
if (nativeHitSelection(contentX, contentY)) {
copySelection();
}
selectionDone();
break;
}
if (mTouchMode == TOUCH_INIT_MODE) {