Skip to content

Commit

Permalink
Merge pull request #1454 from alexbakker/pass-popup-check
Browse files Browse the repository at this point in the history
Add an extra check before showing the password reminder popup
  • Loading branch information
michaelschattgen committed Aug 11, 2024
2 parents db4c738 + 010e262 commit bc5cb48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private void showPasswordReminder() {
popup.setFocusable(false);
popup.setOutsideTouchable(true);
_textPassword.post(() -> {
if (isFinishing()) {
if (isFinishing() || !_textPassword.isAttachedToWindow()) {
return;
}

Expand Down

0 comments on commit bc5cb48

Please sign in to comment.