Add option to hide icons

This commit is contained in:
elena 2022-11-01 19:22:23 +00:00
parent 0aef57e610
commit 237e6744a5
8 changed files with 52 additions and 9 deletions

View file

@ -120,6 +120,10 @@ public class Preferences {
return _prefs.getBoolean("pref_account_name", true);
}
public boolean isIconVisible() {
return _prefs.getBoolean("pref_show_icons", true);
}
public CodeGrouping getCodeGroupSize() {
String value = _prefs.getString("pref_code_group_size_string", "GROUPING_THREES");