Browse Source

Show password only on first entry

Fixes #2
main
M66B 6 years ago
parent
commit
409a9f5b3c
2 changed files with 10 additions and 4 deletions
  1. +5
    -2
      app/src/main/java/eu/faircode/email/FragmentAccount.java
  2. +5
    -2
      app/src/main/java/eu/faircode/email/FragmentIdentity.java

+ 5
- 2
app/src/main/java/eu/faircode/email/FragmentAccount.java View File

@ -126,8 +126,6 @@ public class FragmentAccount extends FragmentEx {
adapter.setDropDownViewResource(R.layout.spinner_dropdown_item);
spProfile.setAdapter(adapter);
pbCheck.setVisibility(View.GONE);
cbSynchronize.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
@ -155,6 +153,11 @@ public class FragmentAccount extends FragmentEx {
}
});
// Initialize
tilPassword.setPasswordVisibilityToggleEnabled(id < 0);
pbCheck.setVisibility(View.GONE);
// Observe
DB.getInstance(getContext()).account().liveAccount(id).observe(this, new Observer<EntityAccount>() {
@Override
public void onChanged(@Nullable EntityAccount account) {


+ 5
- 2
app/src/main/java/eu/faircode/email/FragmentIdentity.java View File

@ -144,8 +144,6 @@ public class FragmentIdentity extends FragmentEx {
adapter.setDropDownViewResource(R.layout.spinner_dropdown_item);
spProfile.setAdapter(adapter);
pbCheck.setVisibility(View.GONE);
cbSynchronize.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
@ -176,6 +174,11 @@ public class FragmentIdentity extends FragmentEx {
}
});
// Initialize
tilPassword.setPasswordVisibilityToggleEnabled(id < 0);
pbCheck.setVisibility(View.GONE);
// Observer
DB.getInstance(getContext()).identity().liveIdentity(id).observe(this, new Observer<EntityIdentity>() {
@Override
public void onChanged(@Nullable EntityIdentity identity) {


Loading…
Cancel
Save