backtab will now change the explorer tab; use P to change to log

This commit is contained in:
veeso
2022-08-30 15:45:26 +02:00
parent 6a5c248d35
commit 2f1b644a40
12 changed files with 25 additions and 15 deletions

View File

@@ -192,7 +192,8 @@ impl Component<Msg, NoUserEvent> for Log {
}
// -- comp msg
Event::Keyboard(KeyEvent {
code: Key::BackTab, ..
code: Key::BackTab | Key::Tab | Key::Char('p'),
..
}) => Some(Msg::Ui(UiMsg::LogBackTabbed)),
_ => None,
}