This commit is contained in:
thatscringebro
2026-03-18 11:12:16 -04:00
parent 1a7a3baaf5
commit 91f43092c3
3 changed files with 89 additions and 34 deletions

View File

@@ -90,6 +90,18 @@ where
app.previous_tr();
}
},
KeyCode::Char('l') => match app.current_widget {
CurrentWidget::AccountList => {}
CurrentWidget::TrxList => {
app.next_tab();
}
},
KeyCode::Char('h') => match app.current_widget {
CurrentWidget::AccountList => {}
CurrentWidget::TrxList => {
app.previous_tab();
}
},
KeyCode::Char('n') => match app.current_widget {
CurrentWidget::AccountList => {
app.current_screen = CurrentScreen::NewAccount;