change layout and title
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user