diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-06-09 19:31:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 16:31:08 +0000 |
commit | 90552e3e7f8f085919a39435a8a68b3a2f633e54 (patch) | |
tree | 711534a54f813a8aad9fe2c3015478ba5ad03d31 /alacritty/src/cli.rs | |
parent | 6dc670cde0c136e28c71d4ebe67c5c8bb9df65b1 (diff) | |
download | r-alacritty-90552e3e7f8f085919a39435a8a68b3a2f633e54.tar.gz r-alacritty-90552e3e7f8f085919a39435a8a68b3a2f633e54.tar.bz2 r-alacritty-90552e3e7f8f085919a39435a8a68b3a2f633e54.zip |
Fix flickering during resize on Wayland
This also fixes an issue of windows not being rendered while resizing.
Fixes #6069.
Diffstat (limited to 'alacritty/src/cli.rs')
-rw-r--r-- | alacritty/src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/cli.rs b/alacritty/src/cli.rs index 3c64458b..83b317b9 100644 --- a/alacritty/src/cli.rs +++ b/alacritty/src/cli.rs @@ -237,7 +237,7 @@ pub struct WindowIdentity { } impl WindowIdentity { - /// Override the [`WindowIdentityConfig`]'s fields with the [`WindowOptions`]. + /// Override the [`WindowIdentity`]'s fields with the [`WindowOptions`]. pub fn override_identity_config(&self, identity: &mut Identity) { if let Some(title) = &self.title { identity.title = title.clone(); |