aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/window.rs
diff options
context:
space:
mode:
authorKirill Chibisov <wchibisovkirill@gmail.com>2019-11-23 20:08:52 +0300
committerChristian Duerr <contact@christianduerr.com>2019-11-23 18:08:52 +0100
commit474032742b3bf325e655eb6cddb19632cb989c1a (patch)
tree9ae4ed52a0fe756474329c5c57076690525d511a /alacritty/src/window.rs
parent624b3e2189df93145559ebba96e0a7754845c033 (diff)
downloadr-alacritty-474032742b3bf325e655eb6cddb19632cb989c1a.tar.gz
r-alacritty-474032742b3bf325e655eb6cddb19632cb989c1a.tar.bz2
r-alacritty-474032742b3bf325e655eb6cddb19632cb989c1a.zip
Move renderer from alacritty_terminal to alacritty
Diffstat (limited to 'alacritty/src/window.rs')
-rw-r--r--alacritty/src/window.rs2
1 files changed, 1 insertions, 1 deletions
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"))]