File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -779,9 +779,9 @@ impl<'a> Field<'a> {
779
779
chunks[ 0 ] = Label :: from ( header) . bold ( ) ;
780
780
781
781
if !is_first_field {
782
- bagls :: LEFT_ARROW . display ( ) ;
782
+ LEFT_ARROW . display ( ) ;
783
783
}
784
- bagls :: RIGHT_ARROW . display ( ) ;
784
+ RIGHT_ARROW . display ( ) ;
785
785
786
786
chunks. place ( Location :: Middle , Layout :: Centered , false ) ;
787
787
@@ -907,7 +907,7 @@ impl<'a> MultiFieldReview<'a> {
907
907
cancel if cancel == self . fields . len ( ) + 1 => {
908
908
let mut buttons = ButtonsState :: new ( ) ;
909
909
clear_screen ( ) ;
910
- bagls :: LEFT_ARROW . display ( ) ;
910
+ LEFT_ARROW . display ( ) ;
911
911
cancel_page. place ( ) ;
912
912
crate :: ui:: screen_util:: screen_update ( ) ;
913
913
loop {
@@ -924,8 +924,8 @@ impl<'a> MultiFieldReview<'a> {
924
924
validation if validation == self . fields . len ( ) => {
925
925
let mut buttons = ButtonsState :: new ( ) ;
926
926
clear_screen ( ) ;
927
- bagls :: LEFT_ARROW . display ( ) ;
928
- bagls :: RIGHT_ARROW . display ( ) ;
927
+ LEFT_ARROW . display ( ) ;
928
+ RIGHT_ARROW . display ( ) ;
929
929
validation_page. place ( ) ;
930
930
crate :: ui:: screen_util:: screen_update ( ) ;
931
931
loop {
@@ -975,7 +975,7 @@ fn display_first_page(page_opt: &Option<Page>) {
975
975
match page_opt {
976
976
Some ( page) => {
977
977
clear_screen ( ) ;
978
- bagls :: RIGHT_ARROW . display ( ) ;
978
+ RIGHT_ARROW . display ( ) ;
979
979
page. place ( ) ;
980
980
crate :: ui:: screen_util:: screen_update ( ) ;
981
981
You can’t perform that action at this time.
0 commit comments