Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ValidationEntry set secret no effect #629

Open
Kuma-Mon opened this issue Jul 14, 2020 · 1 comment
Open

ValidationEntry set secret no effect #629

Kuma-Mon opened this issue Jul 14, 2020 · 1 comment
Milestone

Comments

@Kuma-Mon
Copy link

Bug Report


I try to to use ValidationEntry with secret=True, but the entry still show what I typed.

Here is what I have in python
addLabelValidationEntry("Verify Password: ", 3, 0, secret=True)

I expect the ValidationEntry not show what I typed in, but it still show whatever I typed.

@jarvisteach
Copy link
Owner

That method of adding entries doesn't support making them secret (although it could).

If you want a validation entry to be secret, you will need to use the v1.0 approach:

app.entry("Verify Password: ", secret=True, validation=True)

I'll add this as a feature request, as all the code is there to support it, just that parameter is being ignored at the moment.

@jarvisteach jarvisteach added this to the 1.0 milestone Jan 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants