Prevent export with empty password

pull/214/head
M66B 7 months ago
parent 20f0d6142b
commit 2e3687f4f3

@ -126,7 +126,8 @@ public class FragmentDialogExport extends FragmentDialogBase {
@Override @Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) { if (actionId == EditorInfo.IME_ACTION_DONE) {
btnOk.performClick(); if (btnOk.isEnabled())
btnOk.performClick();
return true; return true;
} else } else
return false; return false;

Loading…
Cancel
Save