mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-20 22:09:12 +00:00
Merge pull request #1454 from alexbakker/pass-popup-check
Add an extra check before showing the password reminder popup
This commit is contained in:
commit
bc5cb488f5
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ public class AuthActivity extends AegisActivity {
|
|||
popup.setFocusable(false);
|
||||
popup.setOutsideTouchable(true);
|
||||
_textPassword.post(() -> {
|
||||
if (isFinishing()) {
|
||||
if (isFinishing() || !_textPassword.isAttachedToWindow()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue