Skip to content

Commit

Permalink
Allows tab key on account management, refs #43
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMiras committed Jul 20, 2017
1 parent 96091b6 commit 9fa485f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pywallet.kv
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,15 @@
helper_text: "Enter your current password for unlocking your account"
helper_text_mode: "on_focus"
password: True
write_tab: False
text: root.current_password
on_text: root.current_password = args[1]
MDTextField:
hint_text: "Password"
helper_text: "Enter the password for encrypting your new account"
helper_text_mode: "on_focus"
password: True
write_tab: False
text: root.new_password1
on_text: root.new_password1 = args[1]
MDTextField:
Expand All @@ -195,6 +197,7 @@
helper_text: "Retype your password"
helper_text_mode: "on_focus"
password: True
write_tab: False
text: root.new_password2
on_text: root.new_password2 = args[1]
BoxLayout:
Expand Down

0 comments on commit 9fa485f

Please sign in to comment.