diff options
author | Robert Günzler <r@gnzler.io> | 2017-12-20 20:12:32 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-12-22 13:14:47 -0800 |
commit | a35f4590d560bb18e13df6da0b3be2fdeb50d1ab (patch) | |
tree | d8f8720d6eba4d986ce6ba64206941824e35a228 /src/display.rs | |
parent | f6e5cae0ba62130ef6c7ae5bb6ac900d9fef9be5 (diff) | |
download | alacritty-a35f4590d560bb18e13df6da0b3be2fdeb50d1ab.tar.gz alacritty-a35f4590d560bb18e13df6da0b3be2fdeb50d1ab.zip |
Add new window section to config
Move/rename borderless into window_config as decorations
Diffstat (limited to 'src/display.rs')
-rw-r--r-- | src/display.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display.rs b/src/display.rs index f0d2a3d0..bfd62c32 100644 --- a/src/display.rs +++ b/src/display.rs @@ -137,7 +137,7 @@ impl Display { let render_timer = config.render_timer(); // Create the window where Alacritty will be displayed - let mut window = Window::new(&options.title, config.borderless())?; + let mut window = Window::new(&options.title, config.window())?; // get window properties for initializing the other subsystems let mut viewport_size = window.inner_size_pixels() |