pull/214/head
M66B 5 months ago
parent 40992cc351
commit 522916d08c

@ -502,6 +502,13 @@ public class EditTextCompose extends FixedEditText {
return raw;
}
@Override
protected void onSelectionChanged(int selStart, int selEnd) {
super.onSelectionChanged(selStart, selEnd);
if (selectionListener != null)
selectionListener.onSelected(hasSelection());
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if (lt_description && event.getAction() == MotionEvent.ACTION_DOWN) {

Loading…
Cancel
Save