From 8ff3c5d170abe47554f5d2a41ad35ddc451d254d Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Mon, 20 Nov 2017 09:30:57 -0800 Subject: 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. --- src/display.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/display.rs') 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, -- cgit