diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-12-31 05:52:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-31 05:52:45 +0000 |
commit | 1723e30d25f0c6068f9532448b016a89aa491a95 (patch) | |
tree | 543790b11a4fdc3c82f7f0b0ebc1cbc79d1c2009 /alacritty_terminal/src/grid/storage.rs | |
parent | 0aa1df327bf5c3e7892ad13d949be7e598aafda9 (diff) | |
download | alacritty-1723e30d25f0c6068f9532448b016a89aa491a95.tar.gz alacritty-1723e30d25f0c6068f9532448b016a89aa491a95.zip |
Use ConfigDeserialize for all config enums
This fixes up all of the remaining enums which are used in the
configuration file to make sure they all support fully case insensitive
deserialization.
Fixes #4611.
Diffstat (limited to 'alacritty_terminal/src/grid/storage.rs')
-rw-r--r-- | alacritty_terminal/src/grid/storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/grid/storage.rs b/alacritty_terminal/src/grid/storage.rs index 96c578b3..a7d4adcf 100644 --- a/alacritty_terminal/src/grid/storage.rs +++ b/alacritty_terminal/src/grid/storage.rs @@ -26,7 +26,7 @@ const MAX_CACHE_SIZE: usize = 1_000; /// [`slice::rotate_left`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rotate_left /// [`Deref`]: std::ops::Deref /// [`zero`]: #structfield.zero -#[derive(Deserialize, Serialize, Clone, Debug)] +#[derive(Serialize, Deserialize, Clone, Debug)] pub struct Storage<T> { inner: Vec<Row<T>>, |