mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 15:20:17 +00:00
fix(menu): only show the title, not the name of the entry
This commit is contained in:
@@ -133,7 +133,7 @@ fn select_with_input<'a>(
|
|||||||
info!("Boot Menu:");
|
info!("Boot Menu:");
|
||||||
for (index, entry) in entries.iter().enumerate() {
|
for (index, entry) in entries.iter().enumerate() {
|
||||||
let title = entry.context().stamp(&entry.declaration().title);
|
let title = entry.context().stamp(&entry.declaration().title);
|
||||||
info!(" [{}] {} ({})", index, title, entry.name());
|
info!(" [{}] {}", index, title);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user