fix key binding to close log viewer

This commit is contained in:
rabite 2019-04-27 17:54:46 +02:00
parent 9cfe2c2fdb
commit 103ac52a5e
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ where
Key::Char('J') => for _ in 0..10 { self.move_down() },
Key::Down | Key::Char('j') => self.move_down(),
Key::Char('t') => self.toggle_fold()?,
Key::Char('l') => self.popup_finnished()?,
Key::Char('g') => self.popup_finnished()?,
_ => {}
}
Ok(())