fix keybind in procview

This commit is contained in:
rabite 2019-04-13 13:49:59 +02:00
parent 74a168401d
commit 89b94d0ad0
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ impl Widget for ProcView {
return Err(HError::PopupFinnished) }
Key::Char('d') => { self.remove_proc()? }
Key::Char('K') => { self.get_listview_mut().kill_proc()? }
Key::Up | Key::Char('p') => {
Key::Up | Key::Char('k') => {
self.get_listview_mut().move_up();
}
Key::Down | Key::Char('j') => {