File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ pub static LEFT_S_ARROW: Icon = LEFT_ARROW.shift_h(4);
107107pub static RIGHT_S_ARROW : Icon = RIGHT_ARROW . shift_h ( -4 ) ;
108108pub static UP_S_ARROW : Icon = UP_ARROW . shift_v ( -4 ) ;
109109
110- pub static BACK_ICON : Icon = Icon :: from ( & bitmaps:: BACK ) ;
110+ // pub static BACK_ICON: Icon = Icon::from(&bitmaps::BACK);
111111pub static BACK_X_ICON : Icon = Icon :: from ( & bitmaps:: BACK_X ) ;
112112pub static COGGLE_ICON : Icon = Icon :: from ( & bitmaps:: COGGLE ) ;
113113pub static PROCESSING_ICON : Icon = Icon :: from ( & bitmaps:: PROCESSING ) ;
Original file line number Diff line number Diff line change @@ -145,6 +145,12 @@ pub static CROSSMARK: Glyph = Glyph {
145145 height : ledger_secure_sdk_sys:: GLYPH_icon_crossmark_HEIGHT ,
146146 inverted : false ,
147147} ;
148+ pub static CROSS : Glyph = Glyph {
149+ bitmap : unsafe { & C_icon_crossmark_bitmap } ,
150+ width : ledger_secure_sdk_sys:: GLYPH_icon_crossmark_WIDTH ,
151+ height : ledger_secure_sdk_sys:: GLYPH_icon_crossmark_HEIGHT ,
152+ inverted : false ,
153+ } ;
148154extern "C" {
149155 /// The bitmap for the dashboard icon.
150156 pub static C_icon_dashboard_bitmap : [ u8 ; 25 ] ;
@@ -195,6 +201,12 @@ pub static VALIDATE_14: Glyph = Glyph {
195201 height : ledger_secure_sdk_sys:: GLYPH_icon_validate_14_HEIGHT ,
196202 inverted : false ,
197203} ;
204+ pub static CHECKMARK : Glyph = Glyph {
205+ bitmap : unsafe { & C_icon_validate_14_bitmap } ,
206+ width : ledger_secure_sdk_sys:: GLYPH_icon_validate_14_WIDTH ,
207+ height : ledger_secure_sdk_sys:: GLYPH_icon_validate_14_HEIGHT ,
208+ inverted : false ,
209+ } ;
198210extern "C" {
199211 /// The bitmap for the warning icon.
200212 pub static C_icon_warning_bitmap : [ u8 ; 25 ] ;
You can’t perform that action at this time.
0 commit comments