diff options
author | Joe Wilm <joe@jwilm.com> | 2017-10-06 11:32:53 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2017-10-06 11:32:53 -0700 |
commit | 88c1dabefc303e2325fa07adb654eb1d6a6c8a0f (patch) | |
tree | 1fa17292cc9353d3a494826ce844371fb1921403 /src/main.rs | |
parent | e17d38167e174a2cf664e430fe968ec6492e1f08 (diff) | |
download | alacritty-88c1dabefc303e2325fa07adb654eb1d6a6c8a0f.tar.gz alacritty-88c1dabefc303e2325fa07adb654eb1d6a6c8a0f.zip |
Revert "Update glutin & fix a few wayland issues (#815)"
This reverts commit e17d38167e174a2cf664e430fe968ec6492e1f08.
Was breaking builds for mac users.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ee774094..ec327009 100644 --- a/src/main.rs +++ b/src/main.rs @@ -181,7 +181,7 @@ fn run(mut config: Config, options: cli::Options) -> Result<(), Box<Error>> { }); // Maybe draw the terminal - if terminal.needs_draw() && display.window().drawing_ready() { + if terminal.needs_draw() { // Try to update the position of the input method editor display.update_ime_position(&terminal); // Handle pending resize events |