Set text in password field to null when they get swiped
This commit is contained in:
Ralph Plawetzki
2019-05-18 09:29:23 +02:00
parent f0f3b97a4f
commit 31dd78ee28

View File

@@ -249,6 +249,7 @@ public class SecPasswordField extends PasswordField {
public void swipe() {
swipe(content);
length = 0;
setText(null);
}
private void swipe(char[] buffer) {