Skip to content

Commit

Permalink
Center Right to Continue for Last Work Display
Browse files Browse the repository at this point in the history
  • Loading branch information
newtonick committed Jul 14, 2021
1 parent 4c60d2e commit c55d682
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/seedsigner/views/seed_tools_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,10 @@ def display_last_word(self, partial_seed_phrase) -> list:
self.draw.text(((240 - tw) / 2, 60), "The final word is :", fill=View.color, font=View.IMPACT23)
tw, th = self.draw.textsize(last_word, font=View.IMPACT50)
self.draw.text(((240 - tw) / 2, 90), last_word, fill=View.color, font=View.IMPACT50)
self.draw.text((73, 210), "Right to Continue", fill=View.color, font=View.IMPACT18)

tw, th = View.draw.textsize("Right to Continue", font=View.IMPACT18)
View.draw.text(((240 - tw) / 2, 210), "Right to Continue", fill=View.color, font=View.IMPACT18)

View.DispShowImage()

input = self.buttons.wait_for([B.KEY_RIGHT])
Expand Down

0 comments on commit c55d682

Please sign in to comment.