mirror of https://github.com/M66B/FairEmail.git
Show debug info in debug version
This commit is contained in:
parent
f9784e14fd
commit
59ce40f9a4
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue