Add tap to reveal preference to results

This commit is contained in:
Michael Schättgen 2019-03-25 21:40:08 +01:00
parent 0e6828fae1
commit d57fc8b79a
2 changed files with 7 additions and 7 deletions

View file

@ -159,7 +159,9 @@ public class MainActivity extends AegisActivity implements EntryListView.Listene
recreate();
} else if (data.getBooleanExtra("needsRefresh", false)) {
boolean showAccountName = getPreferences().isAccountNameVisible();
boolean tapToReveal = getPreferences().isTapToRevealEnabled();
_entryListView.setShowAccountName(showAccountName);
_entryListView.setTapToReveal(tapToReveal);
_entryListView.refresh(true);
}
}