|
|
|
@ -21,6 +21,7 @@ package eu.faircode.email;
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
import android.graphics.Canvas;
|
|
|
|
|
import android.os.Build;
|
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
|
import android.view.MotionEvent;
|
|
|
|
|
|
|
|
|
@ -97,6 +98,20 @@ 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 {
|
|
|
|
|