Skip to content

Commit

Permalink
add Cardano logo to menu
Browse files Browse the repository at this point in the history
  • Loading branch information
janmazak committed Jun 22, 2022
1 parent aeed528 commit cc9b1eb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Binary file added glyphs/icon_app.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/menu_nanos.c
Expand Up @@ -68,9 +68,9 @@ void os_sched_exit_ui_callback(unsigned int userid MARK_UNUSED)

const ux_menu_entry_t menu_main[] = {
#if defined(DEVEL) || defined(HEADLESS)
{NULL, NULL, 0, NULL, "Warning:", "DEVEL version!", 0, 0},
{NULL, NULL, 0, &C_icon_app, "Warning:", "DEVEL version!", 0, 0},
#else
{NULL, NULL, 0, NULL, "Cardano", "is ready", 0, 0},
{NULL, NULL, 0, &C_icon_app, "Cardano", "is ready", 0, 0},
#endif
{NULL, h_expert_toggle, 0, NULL, "Expert mode:", expertModeString, 33, 12},
{menu_about, NULL, 0, NULL, "About", NULL, 0, 0},
Expand Down
4 changes: 3 additions & 1 deletion src/menu_nanox.c
Expand Up @@ -16,14 +16,16 @@ void h_expert_update();

UX_STEP_NOCB(
ux_idle_flow_1_step,
bn,
pbb,
#if defined(DEVEL) || defined(HEADLESS)
LINES(
&C_icon_app,
"Warning:",
"DEVEL version!"
)
#else
LINES(
&C_icon_app,
"Cardano",
"is ready"
)
Expand Down

0 comments on commit cc9b1eb

Please sign in to comment.