diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-02-04 20:47:54 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-04 17:47:54 +0000 |
commit | b72903e720ca1fef2ed450c1026eb8331efc0288 (patch) | |
tree | a38b57abde94d61afa9a61ac4857cd34678458b9 | |
parent | 74039bde1249ad77fe8d2d85ec6eb1f363f5c511 (diff) | |
download | alacritty-b72903e720ca1fef2ed450c1026eb8331efc0288.tar.gz alacritty-b72903e720ca1fef2ed450c1026eb8331efc0288.zip |
Start window invisible on Windows
-rw-r--r-- | alacritty/src/window.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/window.rs b/alacritty/src/window.rs index 4d1a8ead..71327bac 100644 --- a/alacritty/src/window.rs +++ b/alacritty/src/window.rs @@ -252,7 +252,7 @@ impl Window { WindowBuilder::new() .with_title(title) - .with_visible(true) + .with_visible(false) .with_decorations(decorations) .with_transparent(true) .with_maximized(window_config.startup_mode() == StartupMode::Maximized) |