This commit is contained in:
M66B
2024-02-18 10:51:14 +01:00
parent 40992cc351
commit 522916d08c

View File

@@ -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) {