From 474032742b3bf325e655eb6cddb19632cb989c1a Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sat, 23 Nov 2019 20:08:52 +0300 Subject: Move renderer from alacritty_terminal to alacritty --- alacritty/src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src/window.rs') diff --git a/alacritty/src/window.rs b/alacritty/src/window.rs index 0559cbc7..b471918c 100644 --- a/alacritty/src/window.rs +++ b/alacritty/src/window.rs @@ -37,11 +37,11 @@ use x11_dl::xlib::{Display as XDisplay, PropModeReplace, XErrorEvent, Xlib}; use alacritty_terminal::config::{Decorations, StartupMode, WindowConfig}; use alacritty_terminal::event::Event; -use alacritty_terminal::gl; #[cfg(not(windows))] use alacritty_terminal::term::{SizeInfo, Term}; use crate::config::Config; +use crate::gl; // It's required to be in this directory due to the `windows.rc` file #[cfg(not(target_os = "macos"))] -- cgit