Skip to content

Commit

Permalink
SFT-2455: fixed back button functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
mjg-foundation committed Jul 18, 2023
1 parent 2ead8d2 commit d50292f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self,

# Used in flow_show_card_missing
self.automatic = automatic
self.return_bool = True
self.return_bool = False

bind(self, show_card_missing)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ async def save_to_microsd(self):
self.goto(self.show_success)
return

self.written = True
base = 'QR'

if not self.is_comp:
Expand All @@ -196,6 +195,7 @@ async def save_to_microsd(self):
self.back()
return

self.written = True
self.goto(self.show_success)

async def show_success(self):
Expand Down

0 comments on commit d50292f

Please sign in to comment.