From ecbb71232ead0ec0a47bac49581a3d540ab7b1df Mon Sep 17 00:00:00 2001 From: Lukas Bielesch Date: Fri, 13 Jun 2025 09:17:18 +0200 Subject: [PATCH] chore(rust): increase max text ops [no changelog] --- core/embed/rust/src/ui/component/text/op.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/rust/src/ui/component/text/op.rs b/core/embed/rust/src/ui/component/text/op.rs index cd5b49271b..5ebf6303e3 100644 --- a/core/embed/rust/src/ui/component/text/op.rs +++ b/core/embed/rust/src/ui/component/text/op.rs @@ -16,7 +16,7 @@ use heapless::Vec; // So that there is only one implementation, and not multiple generic ones // as would be via `const N: usize` generics. -const MAX_OPS: usize = 20; +const MAX_OPS: usize = 30; /// To account for operations that are not made of characters /// but need to be accounted for somehow.