Don't show the password reminder popup if the activity is finished

This commit is contained in:
Alexander Bakker 2022-12-03 21:30:10 +01:00
parent 12683e3ff0
commit caad516a6e

View File

@ -233,6 +233,10 @@ public class AuthActivity extends AegisActivity {
popup.setElevation(5.0f);
}
_textPassword.post(() -> {
if (isFinishing()) {
return;
}
// calculating the actual height of the popup window does not seem possible
// adding 25dp seems to look good enough
int yoff = _textPassword.getHeight()