mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 15:17:03 +02:00
Silently save signature status
This commit is contained in:
@@ -825,8 +825,11 @@ public class FragmentCompose extends FragmentBase {
|
||||
if (tag == null || !tag.equals(checked)) {
|
||||
cbSignature.setTag(checked);
|
||||
tvSignature.setAlpha(checked ? 1.0f : Helper.LOW_LIGHT);
|
||||
if (tag != null)
|
||||
onAction(R.id.action_save, "signature");
|
||||
if (tag != null) {
|
||||
Bundle extras = new Bundle();
|
||||
extras.putBoolean("silent", true);
|
||||
onAction(R.id.action_save, extras, "signature");
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user