mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Fixed disabling send dialog
This commit is contained in:
parent
a4636b2d4d
commit
d912742240
1 changed files with 1 additions and 1 deletions
|
@ -4915,7 +4915,7 @@ public class FragmentCompose extends FragmentBase {
|
||||||
spPriority.setSelection(1);
|
spPriority.setSelection(1);
|
||||||
tvSendAt.setText(null);
|
tvSendAt.setText(null);
|
||||||
cbNotAgain.setChecked(!send_dialog);
|
cbNotAgain.setChecked(!send_dialog);
|
||||||
cbNotAgain.setVisibility(dialog ? View.VISIBLE : View.GONE);
|
cbNotAgain.setVisibility(dialog || send_dialog ? View.VISIBLE : View.GONE);
|
||||||
tvNotAgain.setVisibility(cbNotAgain.isChecked() && dialog ? View.VISIBLE : View.GONE);
|
tvNotAgain.setVisibility(cbNotAgain.isChecked() && dialog ? View.VISIBLE : View.GONE);
|
||||||
|
|
||||||
Helper.setViewsEnabled(dview, false);
|
Helper.setViewsEnabled(dview, false);
|
||||||
|
|
Loading…
Reference in a new issue