change layout and title
All checks were successful
/ Quality Check (push) Successful in 2m0s
/ Build (push) Successful in 2m24s

This commit is contained in:
Phani Pavan K
2025-10-09 12:01:39 +05:30
parent 1934c869a7
commit db1aad13f5
2 changed files with 55 additions and 37 deletions

View File

@@ -109,7 +109,8 @@ fn runApp<B: Backend>(app: &mut AppState, terminal: &mut Terminal<B>) -> Result<
app.screen = CurrentScreen::Main;
app.currentlyEditing = None;
}
(KeyModifiers::NONE, KeyCode::Tab) => app.nextField(),
(KeyModifiers::NONE, KeyCode::Tab | KeyCode::Right) => app.nextField(),
(KeyModifiers::NONE, KeyCode::Left) => app.prevField(),
(KeyModifiers::SHIFT, KeyCode::Tab) => app.prevField(),
(_, KeyCode::Char(v)) => {
if let Some(e) = &app.currentlyEditing {