Add ability to enable PIN keyboard

Review fixes

Fix line
This commit is contained in:
Michael Schättgen 2020-07-05 19:27:44 +02:00
parent 57ef52d6ff
commit 0c0e8c0d66
6 changed files with 107 additions and 9 deletions

View file

@ -168,6 +168,10 @@ public class Preferences {
return _prefs.getString("pref_backups_error", null);
}
public boolean isPinKeyboardEnabled() {
return _prefs.getBoolean("pref_pin_keyboard", false);
}
public boolean isTimeSyncWarningEnabled() {
return _prefs.getBoolean("pref_warn_time_sync", true);
}