mirror of https://github.com/M66B/FairEmail.git
Scroll to end on edit ref
This commit is contained in:
parent
23e5414612
commit
e664e5408f
|
@ -3536,7 +3536,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
|
||||
Log.i("Draft content=" + draft.content);
|
||||
if (draft.content && state == State.NONE)
|
||||
showDraft(draft);
|
||||
showDraft(draft, false);
|
||||
|
||||
tvNoInternet.setTag(draft.content);
|
||||
checkInternet();
|
||||
|
@ -4035,12 +4035,14 @@ public class FragmentCompose extends FragmentBase {
|
|||
finish();
|
||||
|
||||
} else if (action == R.id.action_undo || action == R.id.action_redo) {
|
||||
showDraft(draft);
|
||||
showDraft(draft, false);
|
||||
|
||||
} else if (action == R.id.action_save) {
|
||||
boolean show = args.getBundle("extras").getBoolean("show");
|
||||
Bundle extras = args.getBundle("extras");
|
||||
boolean show = extras.getBoolean("show");
|
||||
boolean html = extras.containsKey("html");
|
||||
if (show)
|
||||
showDraft(draft);
|
||||
showDraft(draft, html);
|
||||
|
||||
} else if (action == R.id.action_check) {
|
||||
boolean dialog = args.getBundle("extras").getBoolean("dialog");
|
||||
|
@ -4161,7 +4163,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
ref.first().before(div);
|
||||
}
|
||||
|
||||
private void showDraft(final EntityMessage draft) {
|
||||
private void showDraft(final EntityMessage draft, final boolean scroll) {
|
||||
Bundle args = new Bundle();
|
||||
args.putLong("id", draft.id);
|
||||
args.putBoolean("show_images", show_images);
|
||||
|
@ -4261,6 +4263,9 @@ public class FragmentCompose extends FragmentBase {
|
|||
@Override
|
||||
protected void onExecuted(Bundle args, Spanned[] text) {
|
||||
etBody.setText(text[0]);
|
||||
if (scroll && text[0] != null)
|
||||
etBody.setSelection(text[0].length());
|
||||
else
|
||||
etBody.setSelection(0);
|
||||
grpBody.setVisibility(View.VISIBLE);
|
||||
|
||||
|
|
Loading…
Reference in New Issue