Draw the screen when Refresh event arrives

cc #53
This commit is contained in:
Joe Wilm 2017-01-04 19:53:24 -08:00
parent af1ce5b91b
commit 693aefcbd7
1 changed files with 1 additions and 0 deletions

View File

@ -159,6 +159,7 @@ impl<N: Notify> Processor<N> {
glutin::Event::MouseWheel(scroll_delta, touch_phase) => {
processor.on_mouse_wheel(scroll_delta, touch_phase);
},
glutin::Event::Refresh |
glutin::Event::Awakened => {
processor.ctx.terminal.dirty = true;
},