mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 16:09:38 +02:00
corrected a bug where cancel in openkeychain does not dismiss pgp dialog
This commit is contained in:
parent
68623dcf8d
commit
196813022a
|
@ -247,6 +247,10 @@ public class PgpHandler extends Activity implements OpenPgpServiceConnection.OnB
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (resultCode == RESULT_CANCELED) {
|
||||||
|
bindingDialog.dismiss();
|
||||||
|
setResult(RESULT_CANCELED, data);
|
||||||
|
finish();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue