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