From 1723e30d25f0c6068f9532448b016a89aa491a95 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Thu, 31 Dec 2020 05:52:45 +0000 Subject: 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. --- alacritty_terminal/src/grid/row.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty_terminal/src/grid/row.rs') diff --git a/alacritty_terminal/src/grid/row.rs b/alacritty_terminal/src/grid/row.rs index 5b1be31c..e48103a6 100644 --- a/alacritty_terminal/src/grid/row.rs +++ b/alacritty_terminal/src/grid/row.rs @@ -13,7 +13,7 @@ use crate::index::Column; use crate::term::cell::ResetDiscriminant; /// A row in the grid. -#[derive(Default, Clone, Debug, Serialize, Deserialize)] +#[derive(Serialize, Deserialize, Default, Clone, Debug)] pub struct Row { inner: Vec, -- cgit