Skip to content

Commit

Permalink
Fix F3 error when no address is selected
Browse files Browse the repository at this point in the history
  • Loading branch information
Ircama committed Oct 21, 2024
1 parent 0eb4f79 commit 6bab3a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1635,9 +1635,9 @@ def key_values(self, cursor=True):
chr(b + 1) for b in printer.parm.get("write_key", b'')
),
"Write sequence":
self.printer.caesar(printer.parm.get("write_key", b'')),
printer.caesar(printer.parm.get("write_key", b'')),
"Hex write sequence":
self.printer.caesar(
printer.caesar(
printer.parm.get("write_key", b''), hex=True
).upper()
}
Expand Down

0 comments on commit 6bab3a0

Please sign in to comment.