1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-19 10:25:29 +00:00

Small layout improvement

This commit is contained in:
M66B 2019-01-25 06:57:26 +00:00
parent 9e143870fb
commit 5c9706e912

View file

@ -107,7 +107,7 @@ public class AdapterAccount extends RecyclerView.Adapter<AdapterAccount.ViewHold
ivState.setVisibility(account.synchronize ? View.VISIBLE : View.INVISIBLE);
tvLast.setText(context.getString(R.string.title_last_connected,
account.last_connected == null ? "" : df.format(account.last_connected)));
account.last_connected == null ? "-" : df.format(account.last_connected)));
tvError.setText(account.error);
tvError.setVisibility(account.error == null ? View.GONE : View.VISIBLE);