Browse Source

clear password field when switching vault before unlocking [ci skip]

Sebastian Stenzel 10 years ago
parent
commit
38ab167fa4

+ 1 - 0
main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockController.java

@@ -216,6 +216,7 @@ public class UnlockController extends AbstractFXMLViewController {
 	public void setVault(Vault vault) {
 		this.vault = vault;
 		this.mountName.setText(vault.getMountName());
+		this.passwordField.clear();
 	}
 
 	public UnlockListener getListener() {