mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-27 11:16:03 +00:00
Call resize_term on KeySize
This commit is contained in:
parent
4383526ec0
commit
7469bd36be
@ -413,7 +413,10 @@ impl backend::Backend for Concrete {
|
||||
pancurses::Input::KeySUndo => Event::Refresh,
|
||||
pancurses::Input::KeySuspend => Event::Refresh,
|
||||
pancurses::Input::KeyUndo => Event::Refresh,
|
||||
pancurses::Input::KeyResize => Event::WindowResize,
|
||||
pancurses::Input::KeyResize => {
|
||||
pancurses::resize_term(0, 0);
|
||||
Event::WindowResize
|
||||
},
|
||||
pancurses::Input::KeyEvent => Event::Refresh,
|
||||
// TODO: mouse support
|
||||
pancurses::Input::KeyMouse => self.parse_mouse_event(),
|
||||
|
Loading…
Reference in New Issue
Block a user