From 3722cd364dab900e7f94cf8c4dd630439bec7cfd Mon Sep 17 00:00:00 2001 From: djairoh Date: Wed, 10 May 2023 14:36:22 +0200 Subject: [PATCH] removed extraneous field from config --- src/structs/config.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/structs/config.rs b/src/structs/config.rs index 52c0a6a..032dcb6 100644 --- a/src/structs/config.rs +++ b/src/structs/config.rs @@ -48,7 +48,6 @@ impl Default for Rating { #[derive(Serialize, Deserialize)] pub struct Config { - pub font_index: u8, pub metadata_separator: String, pub array_separator: char, pub hide_output: bool, @@ -65,7 +64,6 @@ pub struct Config { impl Default for Config { fn default() -> Self { Config { - font_index: 1, update_delay: time::Duration::from_millis(300), metadata_separator: "|".to_owned(), array_separator: '+',