Fix improper handling of escape

This commit is contained in:
Jeremy Soller 2026-02-05 13:39:32 -07:00
parent 7d2f631c5d
commit 3bb79a36ac

View file

@ -2364,6 +2364,10 @@ impl Application for App {
Key::Named(Named::Paste) => {
return self.update(Message::Paste(None));
}
Key::Named(Named::Escape) => {
// Handled by on_escape
return Task::none();
}
_ => {}
}