diff options
author | Tezkerek <andrei.ancuta@gmail.com> | 2018-06-07 19:53:16 +0300 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-06-07 16:53:16 +0000 |
commit | 66acf1e03da4d0206e3368bf58953b071887ccb2 (patch) | |
tree | bcdff68e708c02c75df6ffc0545d2fb5d13389d3 /src/display.rs | |
parent | 93780ef0929e08f3c5212e5451152ecaf1a28813 (diff) | |
download | r-alacritty-66acf1e03da4d0206e3368bf58953b071887ccb2.tar.gz r-alacritty-66acf1e03da4d0206e3368bf58953b071887ccb2.tar.bz2 r-alacritty-66acf1e03da4d0206e3368bf58953b071887ccb2.zip |
Add working --class and --title CLI parameters
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 2b87bf50..e0453f72 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.window())?; + let mut window = Window::new(&options, config.window())?; // get window properties for initializing the other subsystems let mut viewport_size = window.inner_size_pixels() |