diff --git a/core/assets/model_r/next_page.png b/core/assets/model_r/next_page.png new file mode 100644 index 0000000000..8ccff1785b Binary files /dev/null and b/core/assets/model_r/next_page.png differ diff --git a/core/assets/model_r/prev_page.png b/core/assets/model_r/prev_page.png new file mode 100644 index 0000000000..657c14231e Binary files /dev/null and b/core/assets/model_r/prev_page.png differ diff --git a/core/embed/rust/src/ui/model_tr/res/next_page.toif b/core/embed/rust/src/ui/model_tr/res/next_page.toif new file mode 100644 index 0000000000..aa322d632b Binary files /dev/null and b/core/embed/rust/src/ui/model_tr/res/next_page.toif differ diff --git a/core/embed/rust/src/ui/model_tr/res/prev_page.toif b/core/embed/rust/src/ui/model_tr/res/prev_page.toif new file mode 100644 index 0000000000..3be189ea61 Binary files /dev/null and b/core/embed/rust/src/ui/model_tr/res/prev_page.toif differ diff --git a/core/embed/rust/src/ui/model_tr/theme.rs b/core/embed/rust/src/ui/model_tr/theme.rs index 87486ac46d..d967d11bab 100644 --- a/core/embed/rust/src/ui/model_tr/theme.rs +++ b/core/embed/rust/src/ui/model_tr/theme.rs @@ -54,8 +54,12 @@ pub const ICON_DELETE: IconAndName = pub const ICON_EYE: IconAndName = IconAndName::new(include_res!("model_tr/res/eye.toif"), "eye"); // 12*6 pub const ICON_FAIL: IconAndName = IconAndName::new(include_res!("model_tr/res/fail.toif"), "fail"); pub const ICON_LOCK: IconAndName = IconAndName::new(include_res!("model_tr/res/lock.toif"), "lock"); // 10*10 +pub const ICON_NEXT_PAGE: IconAndName = + IconAndName::new(include_res!("model_tr/res/next_page.toif"), "next_page"); // 10*8 pub const ICON_PARAM: IconAndName = IconAndName::new(include_res!("model_tr/res/param.toif"), "param"); // 10*10 +pub const ICON_PREV_PAGE: IconAndName = + IconAndName::new(include_res!("model_tr/res/prev_page.toif"), "prev_page"); // 8*10 pub const ICON_SUCCESS: IconAndName = IconAndName::new(include_res!("model_tr/res/success.toif"), "success"); pub const ICON_TICK: IconAndName = IconAndName::new(include_res!("model_tr/res/tick.toif"), "tick"); // 10*10 diff --git a/core/src/apps/bitcoin/sign_tx/layout.py b/core/src/apps/bitcoin/sign_tx/layout.py index 39ae255aa8..a1d0bb602c 100644 --- a/core/src/apps/bitcoin/sign_tx/layout.py +++ b/core/src/apps/bitcoin/sign_tx/layout.py @@ -227,7 +227,7 @@ async def confirm_feeoverthreshold( ctx, "fee_over_threshold", "High fee", - "The fee of\n{}is unexpectedly high.", + "The fee of\n{}\nis unexpectedly high.", fee_amount, ButtonRequestType.FeeOverThreshold, )