mirror of https://github.com/M66B/FairEmail.git
Disable emoji2 by default
emoji2 is unstable and Google isn't interested in fixing it
This commit is contained in:
parent
37e07401a5
commit
866dda7806
|
@ -172,7 +172,7 @@ public class ApplicationEx extends Application
|
|||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
final boolean crash_reports = prefs.getBoolean("crash_reports", false);
|
||||
final boolean leak_canary = prefs.getBoolean("leak_canary", false);
|
||||
final boolean load_emoji = prefs.getBoolean("load_emoji", BuildConfig.PLAY_STORE_RELEASE);
|
||||
final boolean load_emoji = prefs.getBoolean("load_emoji", false);
|
||||
|
||||
prev = Thread.getDefaultUncaughtExceptionHandler();
|
||||
|
||||
|
|
|
@ -595,7 +595,7 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
|
|||
tvGenericUserAgent.setText(WebViewEx.getUserAgent(getContext()));
|
||||
swGenericUserAgent.setChecked(prefs.getBoolean("generic_ua", false));
|
||||
swSafeBrowsing.setChecked(prefs.getBoolean("safe_browsing", false));
|
||||
swLoadEmoji.setChecked(prefs.getBoolean("load_emoji", BuildConfig.PLAY_STORE_RELEASE));
|
||||
swLoadEmoji.setChecked(prefs.getBoolean("load_emoji", false));
|
||||
|
||||
long time = prefs.getLong("disconnect_last", -1);
|
||||
DateFormat DF = SimpleDateFormat.getDateTimeInstance();
|
||||
|
|
Loading…
Reference in New Issue