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

pull/1054/head
Alexander Bakker 3 years ago
parent 12683e3ff0
commit caad516a6e

@ -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()

Loading…
Cancel
Save