feat: Improved UI speed and responsiveness
Check / stable / fmt (push) Has been cancelled
Check / beta / clippy (push) Has been cancelled
Check / stable / clippy (push) Has been cancelled
Check / nightly / doc (push) Has been cancelled
Check / 1.89.0 / check (push) Has been cancelled
Test Suite / ubuntu / beta (push) Has been cancelled
Test Suite / ubuntu / stable (push) Has been cancelled
Test Suite / macos-latest / stable (push) Has been cancelled
Test Suite / windows-latest / stable (push) Has been cancelled
Test Suite / ubuntu / stable / coverage (push) Has been cancelled

This commit is contained in:
2025-12-19 13:41:14 -07:00
parent 6a9fd0999c
commit 368f7505ff
21 changed files with 64 additions and 28 deletions
+3 -2
View File
@@ -249,7 +249,7 @@ async fn start_ui(
terminal.draw(|f| ui(f, &mut app))?;
match input_events.next()? {
InputEvent::KeyEvent(key) => {
Some(InputEvent::KeyEvent(key)) => {
if key == Key::Char('q') && !app.ignore_special_keys_for_textbox_input {
break;
}
@@ -257,7 +257,8 @@ async fn start_ui(
handlers::handle_events(key, &mut app);
}
InputEvent::Tick => app.on_tick().await,
Some(InputEvent::Tick) => app.on_tick().await,
_ => {}
}
}