diff options
Diffstat (limited to 'alacritty/src/ipc.rs')
-rw-r--r-- | alacritty/src/ipc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/ipc.rs b/alacritty/src/ipc.rs index 6f02e757..a71b5139 100644 --- a/alacritty/src/ipc.rs +++ b/alacritty/src/ipc.rs @@ -58,8 +58,8 @@ pub fn spawn_ipc_socket(options: &Options, event_proxy: EventLoopProxy<Event>) - // Handle IPC events. match message { - SocketMessage::CreateWindow(terminal_options) => { - let event = Event::new(EventType::CreateWindow(Some(terminal_options)), None); + SocketMessage::CreateWindow(options) => { + let event = Event::new(EventType::CreateWindow(options), None); let _ = event_proxy.send_event(event); }, } |