Minimize or Close app after copying OTP

Close #805
This commit is contained in:
Maarten Trompper 2022-08-26 20:54:46 +02:00 committed by Alexander Bakker
parent 3bc10bd4b8
commit 78feb25543
4 changed files with 15 additions and 0 deletions

View file

@ -355,6 +355,10 @@ public class Preferences {
return _prefs.getBoolean("pref_copy_on_tap", false);
}
public boolean isMinimizeOnCopyEnabled() {
return _prefs.getBoolean("pref_minimize_on_copy", false);
}
public void setGroupFilter(List<String> groupFilter) {
JSONArray json = new JSONArray(groupFilter);
_prefs.edit().putString("pref_group_filter", json.toString()).apply();