aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/cli.rs
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2021-01-01 05:07:39 +0000
committerGitHub <noreply@github.com>2021-01-01 05:07:39 +0000
commit8ed72cc065255007a7f0687e3b8a540e8c6202c6 (patch)
tree97be52ae4c288fcfeb849d1f97f7a5efc9c2dab1 /alacritty/src/cli.rs
parent1723e30d25f0c6068f9532448b016a89aa491a95 (diff)
downloadr-alacritty-8ed72cc065255007a7f0687e3b8a540e8c6202c6.tar.gz
r-alacritty-8ed72cc065255007a7f0687e3b8a540e8c6202c6.tar.bz2
r-alacritty-8ed72cc065255007a7f0687e3b8a540e8c6202c6.zip
Remove Windows WinPTY backend
Diffstat (limited to 'alacritty/src/cli.rs')
-rw-r--r--alacritty/src/cli.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/alacritty/src/cli.rs b/alacritty/src/cli.rs
index 6dea3319..682bdde3 100644
--- a/alacritty/src/cli.rs
+++ b/alacritty/src/cli.rs
@@ -298,8 +298,7 @@ mod tests {
fn dynamic_title_overridden_by_options() {
let mut config = Config::default();
- let mut options = Options::default();
- options.title = Some("foo".to_owned());
+ let options = Options { title: Some("foo".to_owned()), ..Options::default() };
options.override_config(&mut config);
assert!(!config.ui_config.window.dynamic_title);