fix backspace

pull/6/head
dvkt 5 years ago
parent ac396f032f
commit 449d5dabc4

@ -30,10 +30,7 @@ impl View for MenuView {
}
fn process_input(&mut self, key: Key) -> Action {
match self.process_key(key) {
a @ Action::Unknown => return a,
a => a,
}
self.process_key(key)
}
fn url(&self) -> String {
@ -187,17 +184,14 @@ impl MenuView {
}
Key::Up | Key::Ctrl('p') => self.action_up(),
Key::Down | Key::Ctrl('n') => self.action_down(),
Key::Backspace => {
Key::Backspace | Key::Delete => {
if self.input.is_empty() {
Action::Back
} else {
Action::Unknown
self.input.pop();
self.redraw_input()
}
}
Key::Delete => {
self.input.pop();
self.redraw_input()
}
Key::Ctrl('c') => {
if self.input.len() > 0 {
self.input.clear();

Loading…
Cancel
Save