We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4378a63 commit a03312bCopy full SHA for a03312b
ledger_device_sdk/src/nbgl/nbgl_home_and_settings.rs
@@ -305,7 +305,10 @@ impl<'a> NbglHomeAndSettings {
305
nbgl_useCaseHomeAndSettings(
306
self.app_name.as_ptr() as *const c_char,
307
&self.icon as *const nbgl_icon_details_t,
308
- core::ptr::null(),
+ match self.tag_line {
309
+ None => core::ptr::null(),
310
+ Some(ref tag) => tag.as_ptr() as *const c_char,
311
+ },
312
match self.start_page {
313
PageIndex::Home => INIT_HOME_PAGE as u8,
314
PageIndex::Settings(idx) => idx,
0 commit comments