Skip to content

Commit e0a815e

Browse files
committed
Remove bagls prefix
1 parent 0e494b5 commit e0a815e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ledger_device_sdk/src/ui/gadgets.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -779,9 +779,9 @@ impl<'a> Field<'a> {
779779
chunks[0] = Label::from(header).bold();
780780

781781
if !is_first_field {
782-
bagls::LEFT_ARROW.display();
782+
LEFT_ARROW.display();
783783
}
784-
bagls::RIGHT_ARROW.display();
784+
RIGHT_ARROW.display();
785785

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

@@ -907,7 +907,7 @@ impl<'a> MultiFieldReview<'a> {
907907
cancel if cancel == self.fields.len() + 1 => {
908908
let mut buttons = ButtonsState::new();
909909
clear_screen();
910-
bagls::LEFT_ARROW.display();
910+
LEFT_ARROW.display();
911911
cancel_page.place();
912912
crate::ui::screen_util::screen_update();
913913
loop {
@@ -924,8 +924,8 @@ impl<'a> MultiFieldReview<'a> {
924924
validation if validation == self.fields.len() => {
925925
let mut buttons = ButtonsState::new();
926926
clear_screen();
927-
bagls::LEFT_ARROW.display();
928-
bagls::RIGHT_ARROW.display();
927+
LEFT_ARROW.display();
928+
RIGHT_ARROW.display();
929929
validation_page.place();
930930
crate::ui::screen_util::screen_update();
931931
loop {
@@ -975,7 +975,7 @@ fn display_first_page(page_opt: &Option<Page>) {
975975
match page_opt {
976976
Some(page) => {
977977
clear_screen();
978-
bagls::RIGHT_ARROW.display();
978+
RIGHT_ARROW.display();
979979
page.place();
980980
crate::ui::screen_util::screen_update();
981981

0 commit comments

Comments
 (0)