Set 'Allow NXZ / XCI / XCZ files bla-bla-bla' settings option enabled for all new installations.

master
Dmitry Isaenko 2020-07-13 04:59:42 +03:00
parent dbb7c8e2e1
commit dfa29aebd3
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public class AppPreferences {
public boolean getAutoCheckUpdates(){return preferences.getBoolean("AUTOCHECK4UPDATES", false); }
public void setAutoCheckUpdates(boolean prop){preferences.putBoolean("AUTOCHECK4UPDATES", prop); }
public boolean getTfXCI(){return preferences.getBoolean("TF_XCI", false);}
public boolean getTfXCI(){return preferences.getBoolean("TF_XCI", true);}
public void setTfXCI(boolean prop){ preferences.putBoolean("TF_XCI", prop); }
public String getLanguage(){return preferences.get("USR_LANG", Locale.getDefault().getISO3Language());}