Debug enabled

This commit is contained in:
M66B 2023-07-07 10:57:05 +02:00
parent ea500bbaa9
commit 47f8f7f69b
1 changed files with 1 additions and 1 deletions

View File

@ -109,6 +109,6 @@ public class FragmentDialogDebug extends FragmentDialogBase {
private void setEnabled(boolean value) {
Button ok = ((AlertDialog) getDialog()).getButton(AlertDialog.BUTTON_POSITIVE);
if (ok != null)
ok.setEnabled(value);
ok.setEnabled(value || BuildConfig.DEBUG);
}
}