Allow clicking on plain text only text

This commit is contained in:
M66B 2021-04-21 07:52:44 +02:00
parent 9e80060dd8
commit 7c54351b9f
1 changed files with 9 additions and 0 deletions

View File

@ -471,6 +471,15 @@ public class FragmentCompose extends FragmentBase {
ibCcAdd.setOnClickListener(onPick);
ibBccAdd.setOnClickListener(onPick);
tvPlainTextOnly.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Bundle args = new Bundle();
args.putBoolean("force_dialog", true);
onAction(R.id.action_check, args, "force");
}
});
setZoom();
etBody.setInputContentListener(new EditTextCompose.IInputContentListener() {