Skip to content

Commit

Permalink
added extra line for words (#155)
Browse files Browse the repository at this point in the history
Co-authored-by: Jacob <endnationstates@protonmail.com>
  • Loading branch information
EndNationStates and Jacob authored Jun 1, 2021
1 parent 8ac442d commit 1a0cea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/screens/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,11 @@ def __init__(self, title="Enter your PIN code", note=None, get_word=None, subtit
lbl.align(self.title, lv.ALIGN.OUT_BOTTOM_MID, 0, 10)
if note is not None:
lbl = add_label(note, scr=self, style="hint")
lbl.align(self.title, lv.ALIGN.OUT_BOTTOM_MID, 0, 110)
lbl.align(self.title, lv.ALIGN.OUT_BOTTOM_MID, 0, 90)
self.get_word = get_word
if get_word is not None:
self.words = add_label(get_word(b""), scr=self)
self.words.align(self.title, lv.ALIGN.OUT_BOTTOM_MID, 0, 140)
self.words.align(self.title, lv.ALIGN.OUT_BOTTOM_MID, 0, 120)
btnm = lv.btnm(self)
# shuffle numbers to make sure
# no constant fingerprints left on screen
Expand Down

0 comments on commit 1a0cea8

Please sign in to comment.