diff options
author | Joe Wilm <joe@jwilm.com> | 2017-11-20 09:30:57 -0800 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2017-11-20 09:30:57 -0800 |
commit | 8ff3c5d170abe47554f5d2a41ad35ddc451d254d (patch) | |
tree | 513dcd3bb073d3736649fcb87c88fa8ed7667227 /src/display.rs | |
parent | a931d691a21a851ca4653cbab3542c600b72ff36 (diff) | |
download | alacritty-8ff3c5d170abe47554f5d2a41ad35ddc451d254d.tar.gz alacritty-8ff3c5d170abe47554f5d2a41ad35ddc451d254d.zip |
Revert "Wait to display window until initialization is complete (#907)"
This reverts commit a931d691a21a851ca4653cbab3542c600b72ff36.
Please see https://github.com/jwilm/alacritty/pull/907#issuecomment-345666727
for rationale w/ GIF.
> now alacritty starts "in stages". First it paints some small
> rectangle, and in a second in "boots" and fills up the available
> space.
Diffstat (limited to 'src/display.rs')
-rw-r--r-- | src/display.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/display.rs b/src/display.rs index 2d87f9ec..862be468 100644 --- a/src/display.rs +++ b/src/display.rs @@ -197,9 +197,6 @@ impl Display { api.clear(background_color); }); - // Show the window now that it's been initialized - window.show(); - Ok(Display { window: window, renderer: renderer, |