diff --git a/assets/send-old.png b/assets/check.png similarity index 62% rename from assets/send-old.png rename to assets/check.png index 9dd8b49a3c..8f290f3318 100644 Binary files a/assets/send-old.png and b/assets/check.png differ diff --git a/src/trezor/res/check.toig b/src/trezor/res/check.toig new file mode 100644 index 0000000000..9858db110f Binary files /dev/null and b/src/trezor/res/check.toig differ diff --git a/src/trezor/ui/__init__.py b/src/trezor/ui/__init__.py index 5fafe7e701..dbab6a75cb 100644 --- a/src/trezor/ui/__init__.py +++ b/src/trezor/ui/__init__.py @@ -112,7 +112,7 @@ def header(title: str, bg: int=BG, ifg: int=BG): if icon is not None: - display.icon(14, 16, res.load(icon), ifg, bg) + display.icon(14, 17, res.load(icon), ifg, bg) display.text(44, 35, title, BOLD, fg, bg) diff --git a/src/trezor/ui/style.py b/src/trezor/ui/style.py index 1ce94de596..b5455dbc41 100644 --- a/src/trezor/ui/style.py +++ b/src/trezor/ui/style.py @@ -52,11 +52,11 @@ ICON_CLEAR = 'trezor/res/cross2.toig' ICON_CONFIRM = 'trezor/res/confirm2.toig' ICON_CONFIRM2 = 'trezor/res/confirm.toig' ICON_LOCK = 'trezor/res/lock.toig' -ICON_SEND = 'trezor/res/send.toig' ICON_CLICK = 'trezor/res/click.toig' ICON_BACK = 'trezor/res/left.toig' ICON_NOCOPY = 'trezor/res/nocopy.toig' ICON_SWIPE = 'trezor/res/swipedown.toig' +ICON_CHECK = 'trezor/res/check.toig' # buttons BTN_DEFAULT = { @@ -190,7 +190,7 @@ LDR_DEFAULT = { 'active': { 'bg-color': BG, 'fg-color': GREEN, - 'icon': ICON_SEND, + 'icon': ICON_CHECK, 'icon-fg-color': WHITE, } } @@ -205,7 +205,7 @@ LDR_DANGER = { 'active': { 'bg-color': BG, 'fg-color': RED, - 'icon': ICON_SEND, + 'icon': ICON_CHECK, 'icon-fg-color': WHITE, } }