1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-11 13:51:01 -05:00

Default to enabling live config reload

This will keep the original behavior for users who don't update their
config.
This commit is contained in:
Joe Wilm 2017-08-29 09:19:43 -07:00
parent b38d825921
commit adcd517669

View file

@ -279,7 +279,7 @@ pub struct Config {
hide_cursor_when_typing: bool, hide_cursor_when_typing: bool,
/// Live config reload /// Live config reload
#[serde(default)] #[serde(default="true_bool")]
live_config_reload: bool, live_config_reload: bool,
} }