Skip to content

Commit

Permalink
update text on backup page
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeBoy committed May 8, 2024
1 parent fb25bdf commit 41c7337
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/values/localizable/en.go
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ const EN = `
"wouldTradeCex" = "Would you like to trade on CEX?"
"writeDownAllXWords" = "Write down all %d words in the correct order."
"writeDownSeed" = "Write down seed phrase"
"wroteAllWords" = "I have written down all 33 words"
"wroteAllWords" = "I have written down all words"
"xInputsConsumed" = "%d Inputs consumed"
"xOutputCreated" = "%d Outputs created"
"xpubKeyErr" = "Error checking xpub: %v"
Expand Down
2 changes: 1 addition & 1 deletion ui/window.go
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ func (win *Window) handleEvents(gtx C) {
// handleUserClick listen touch action of user for mobile.
func (win *Window) handleUserClick(gtx C) {
for _, evt := range win.clicker.Events(gtx) {
if evt.Type == gesture.TypePress { //&& evt.Source == pointer.Touch {
if evt.Type == gesture.TypePress {
win.load.Theme.AutoHideSoftKeyBoardAndMenuButton(gtx)
}
}
Expand Down

0 comments on commit 41c7337

Please sign in to comment.