commit 4da359be2e3afedcecdcb594d31420a90ed5fb00
parent 1434feaf26453c849282ac12cdd621fb38b04d4c
Author: therealFIGBERT <figbertwelner@gmail.com>
Date: Wed, 3 Jul 2019 23:20:37 -0700
Hiding typed password in Windows application
Diffstat:
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/Windows/figENC.exe b/Windows/figENC.exe
Binary files differ.
diff --git a/Windows/figENC_Windows.py b/Windows/figENC_Windows.py
@@ -175,7 +175,7 @@ file_input = tk.Entry(file_frame, font=("Arial", "12"), justify=tk.CENTER, textv
passcode_frame = tk.Frame(step_two, bg="#1A181C", pady="8")
passcode_label = tk.Label(passcode_frame, text="If you see this, the app broke", font=("Arial", "14"), bg="#1A181C", fg="#ACA0B2")
passcode_instructions = tk.Label(passcode_frame, text="If you see this, the app broke", font=("Arial", "11"), bg="#1A181C", fg="#B494C7")
-passcode_input = tk.Entry(passcode_frame, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, bg="#1A181C", fg="#ACA0B2")
+passcode_input = tk.Entry(passcode_frame, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, bg="#1A181C", fg="#ACA0B2", show="*")
save = tk.Frame(step_two, bg="#1A181C", pady="8")
save_label = tk.Label(save, text="Save location for keys", font=("Arial", "14"), bg="#1A181C", fg="#ACA0B2")