diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-12-14 00:22:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 00:22:16 +0000 |
commit | 4de1048628c80e54d342c4cfa3675371f4824fec (patch) | |
tree | 604a03561936647026089a5a897b91fad6199261 /CHANGELOG.md | |
parent | f701b22c2d174faca83cfc0b786ba0bfd4b1724f (diff) | |
download | alacritty-4de1048628c80e54d342c4cfa3675371f4824fec.tar.gz alacritty-4de1048628c80e54d342c4cfa3675371f4824fec.zip |
Fix live reload with broken yaml on start
Since the current behavior would just load the default configuration
file whenever the configuration file couldn't be loaded, the path was
not set to any value. As a result however, the live config reload
feature would not work with a broken yaml (one which cannot be
deserialized, not one with warnings).
If a configuration file has been specified, but the deserialization
still failed, the path is now preserved on the default configuration
file to make it possible to live reload a fix for the issue.
Fixes #4561.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fd096e62..b042f01c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Window not being completely opaque on Windows - Window being always on top during alt-tab on Windows - Cursor position not reported to apps when mouse is moved with button held outside of window +- No live config update when starting Alacritty with a broken configuration file ### Removed |