Move cursor upwards

This commit is contained in:
Joscha 2022-06-13 23:07:12 +02:00
parent f36f205a40
commit bb6169e315
4 changed files with 119 additions and 18 deletions

View file

@ -140,7 +140,7 @@ impl Ui {
if let KeyCode::Char('Q') = event.code {
return EventHandleResult::Stop;
}
self.chat.handle_key_event(event, frame, size);
self.chat.handle_key_event(event, frame, size).await;
EventHandleResult::Continue
}