Add ability to tap to reveal codes 👀

This commit is contained in:
Michael Schättgen 2019-03-25 21:32:29 +01:00
parent ad1d3f04a6
commit 0e6828fae1
8 changed files with 86 additions and 10 deletions

View file

@ -15,6 +15,10 @@ public class Preferences {
return _prefs.getBoolean("pref_dark_mode", false);
}
public boolean isTapToRevealEnabled() {
return _prefs.getBoolean("pref_tap_to_reveal", false);
}
public boolean isSecureScreenEnabled() {
return _prefs.getBoolean("pref_secure_screen", true);
}