diff options
Diffstat (limited to 'alacritty')
-rw-r--r-- | alacritty/src/event.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index 7c3e786d..6c5318f6 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -874,6 +874,8 @@ impl<N: Notify + OnResize> Processor<N> { if !terminal.visual_bell.completed() { let event: Event = TerminalEvent::Wakeup.into(); self.event_queue.push(event.into()); + + *control_flow = ControlFlow::Poll; } // Redraw screen. |