mirror of https://github.com/M66B/FairEmail.git
Check for Android 6.0 for word iterator work around
This commit is contained in:
parent
eb7fde9945
commit
75fe7d0ec9
|
@ -21,7 +21,6 @@ package eu.faircode.email;
|
|||
|
||||
import android.content.Context;
|
||||
import android.graphics.Canvas;
|
||||
import android.os.Build;
|
||||
import android.util.AttributeSet;
|
||||
import android.view.MotionEvent;
|
||||
|
||||
|
@ -98,20 +97,6 @@ public class FixedEditText extends AppCompatEditText {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean dispatchTouchEvent(MotionEvent event) {
|
||||
// https://issuetracker.google.com/issues/37068143
|
||||
if ((BuildConfig.DEBUG || Build.VERSION.SDK_INT <= Build.VERSION_CODES.M) &&
|
||||
hasSelection() &&
|
||||
event.getActionMasked() == MotionEvent.ACTION_DOWN) {
|
||||
CharSequence text = getText();
|
||||
setText(null);
|
||||
setText(text);
|
||||
}
|
||||
|
||||
return super.dispatchTouchEvent(event);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean performLongClick() {
|
||||
try {
|
||||
|
|
|
@ -111,9 +111,9 @@ public class FixedTextView extends AppCompatTextView {
|
|||
@Override
|
||||
public boolean dispatchTouchEvent(MotionEvent event) {
|
||||
// https://issuetracker.google.com/issues/37068143
|
||||
if ((BuildConfig.DEBUG || Build.VERSION.SDK_INT <= Build.VERSION_CODES.M) &&
|
||||
hasSelection() &&
|
||||
event.getActionMasked() == MotionEvent.ACTION_DOWN) {
|
||||
if (event.getActionMasked() == MotionEvent.ACTION_DOWN &&
|
||||
Build.VERSION.RELEASE.equals("6.0") && hasSelection()) {
|
||||
// Remove selection
|
||||
CharSequence text = getText();
|
||||
setText(null);
|
||||
setText(text);
|
||||
|
|
Loading…
Reference in New Issue