From afe4ad5667a57fc7b3416e430852a01738b16642 Mon Sep 17 00:00:00 2001 From: Stepan Snigirev Date: Fri, 26 Mar 2021 10:39:06 +0100 Subject: [PATCH] fix tx screen --- boot/debug/boot.py | 4 ++-- boot/main/boot.py | 4 ++-- src/gui/screens/transaction.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/boot/debug/boot.py b/boot/debug/boot.py index 67be3f7..5161c8b 100755 --- a/boot/debug/boot.py +++ b/boot/debug/boot.py @@ -6,10 +6,10 @@ pwr = pyb.Pin("B15", pyb.Pin.OUT) pwr.on() -# v1.5.0-rc1 - use odd rc for main firmware and even for debug +# v1.5.1-rc1 - use odd rc for main firmware and even for debug # so it's possible to upgrade from debug to main firmware. # (rc99 is final version for production) -version = "0100500001" +version = "0100500101" leds = [pyb.LED(i) for i in range(1,5)] # poweroff on button press diff --git a/boot/main/boot.py b/boot/main/boot.py index 11790a8..a4ba4e9 100755 --- a/boot/main/boot.py +++ b/boot/main/boot.py @@ -6,10 +6,10 @@ pwr = pyb.Pin("B15", pyb.Pin.OUT) pwr.on() -# v1.5.0-rc99 - use odd rc for main firmware and even for debug +# v1.5.1-rc99 - use odd rc for main firmware and even for debug # so it's possible to upgrade from debug to main firmware. # (rc99 is final version for production) -version = "0100500099" +version = "0100500199" # get i2c i2c = pyb.I2C(1) diff --git a/src/gui/screens/transaction.py b/src/gui/screens/transaction.py index 96a0ba6..21793ba 100644 --- a/src/gui/screens/transaction.py +++ b/src/gui/screens/transaction.py @@ -104,7 +104,7 @@ def __init__(self, title, meta): shlbl.align(lbl, lv.ALIGN.OUT_BOTTOM_LEFT, 0, 5) shlbl.set_x(60) shlbl.set_style(0, style_warning) - lbl = shlbl + lbl = shlbl obj = lbl lbl = add_label("%d OUTPUTS" % len(meta["outputs"]), scr=self.page2)