Skip to content

Commit

Permalink
Remove bagls prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Sep 30, 2024
1 parent b69c9fb commit 9ee5e5b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ledger_device_sdk/src/ui/gadgets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -779,9 +779,9 @@ impl<'a> Field<'a> {
chunks[0] = Label::from(header).bold();

if !is_first_field {
bagls::LEFT_ARROW.display();
LEFT_ARROW.display();
}
bagls::RIGHT_ARROW.display();
RIGHT_ARROW.display();

chunks.place(Location::Middle, Layout::Centered, false);

Expand Down Expand Up @@ -907,7 +907,7 @@ impl<'a> MultiFieldReview<'a> {
cancel if cancel == self.fields.len() + 1 => {
let mut buttons = ButtonsState::new();
clear_screen();
bagls::LEFT_ARROW.display();
LEFT_ARROW.display();
cancel_page.place();
crate::ui::screen_util::screen_update();
loop {
Expand All @@ -924,8 +924,8 @@ impl<'a> MultiFieldReview<'a> {
validation if validation == self.fields.len() => {
let mut buttons = ButtonsState::new();
clear_screen();
bagls::LEFT_ARROW.display();
bagls::RIGHT_ARROW.display();
LEFT_ARROW.display();
RIGHT_ARROW.display();
validation_page.place();
crate::ui::screen_util::screen_update();
loop {
Expand Down Expand Up @@ -975,7 +975,7 @@ fn display_first_page(page_opt: &Option<Page>) {
match page_opt {
Some(page) => {
clear_screen();
bagls::RIGHT_ARROW.display();
RIGHT_ARROW.display();
page.place();
crate::ui::screen_util::screen_update();

Expand Down

0 comments on commit 9ee5e5b

Please sign in to comment.