fix: escape key must trigger render update

This commit is contained in:
imgurbot12 2024-07-10 22:08:08 -07:00
parent 5384ad4492
commit deda448b71

View File

@ -194,6 +194,7 @@ impl Context {
self.execute(index, pos);
} else if self.matches(&keybinds.exit, &modifiers, &code) {
self.quit = true;
pos.with_mut(|_| {});
} else if self.matches(&keybinds.move_next, &modifiers, &code) {
self.move_next(index, pos);
self.scroll_down(pos);