diff options
Diffstat (limited to 'alacritty/src/main.rs')
-rw-r--r-- | alacritty/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/alacritty/src/main.rs b/alacritty/src/main.rs index cbd00443..65e13a62 100644 --- a/alacritty/src/main.rs +++ b/alacritty/src/main.rs @@ -178,8 +178,7 @@ fn run(window_event_loop: GlutinEventLoop<Event>, config: Config) -> Result<(), // renderer and input processing. Note that access to the terminal state is // synchronized since the I/O loop updates the state, and the display // consumes it periodically. - let event_loop = - EventLoop::new(Arc::clone(&terminal), event_proxy.clone(), pty, config.debug.ref_test); + let event_loop = EventLoop::new(Arc::clone(&terminal), event_proxy.clone(), pty, &config); // The event loop channel allows write requests from the event processor // to be sent to the pty loop and ultimately written to the pty. |