diff options
author | Joe Wilm <joe@jwilm.com> | 2017-08-29 09:19:43 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2017-08-29 09:32:31 -0700 |
commit | adcd517669f96a2a848c933df3776f2a3d9ac2d5 (patch) | |
tree | d62e876e9cf81ed55190d2fc7e783317f420d092 | |
parent | b38d825921ac20d9f6543c23ed3bc0a44a0bdf2d (diff) | |
download | alacritty-adcd517669f96a2a848c933df3776f2a3d9ac2d5.tar.gz alacritty-adcd517669f96a2a848c933df3776f2a3d9ac2d5.zip |
Default to enabling live config reload
This will keep the original behavior for users who don't update their
config.
-rw-r--r-- | src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs index b88723f5..2bc4322e 100644 --- a/src/config.rs +++ b/src/config.rs @@ -279,7 +279,7 @@ pub struct Config { hide_cursor_when_typing: bool, /// Live config reload - #[serde(default)] + #[serde(default="true_bool")] live_config_reload: bool, } |