diff --git a/app/src/main/java/eu/faircode/email/FragmentOptionsMisc.java b/app/src/main/java/eu/faircode/email/FragmentOptionsMisc.java index 8b020aa66f..cbe14e91eb 100644 --- a/app/src/main/java/eu/faircode/email/FragmentOptionsMisc.java +++ b/app/src/main/java/eu/faircode/email/FragmentOptionsMisc.java @@ -193,7 +193,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("debug", checked).apply(); - grpDebug.setVisibility(checked ? View.VISIBLE : View.GONE); + grpDebug.setVisibility(checked || BuildConfig.DEBUG ? View.VISIBLE : View.GONE); ServiceSynchronize.reload(getContext(), "debug=" + checked); } }); @@ -266,7 +266,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc tvMemoryClass.setText(getString(R.string.title_advanced_memory_class, class_mb + " MB")); tvUuid.setText(prefs.getString("uuid", null)); - grpDebug.setVisibility(swDebug.isChecked() ? View.VISIBLE : View.GONE); + grpDebug.setVisibility(swDebug.isChecked() || BuildConfig.DEBUG ? View.VISIBLE : View.GONE); } private void setLastCleanup(long time) {