Build
Some checks failed
Build App / Build (push) Failing after 22s

This commit is contained in:
2025-03-30 21:36:26 +02:00
parent 690a31bb6f
commit e40e353d6d
2 changed files with 54 additions and 2 deletions

View File

@@ -24,7 +24,8 @@ pub struct Config {
smash_key: String,
font_size: u16,
font_size_departure : u16,
margin: u32
margin: u32,
tournament_image: Option<String>
}
@@ -39,7 +40,7 @@ struct Line<'a> {
impl Config {
fn new() -> Self {
Self { tournament: String::new(), update: Some(1),fullscreen:Some(false), smash_key: String::new(), font_size: 30 , font_size_departure : 45, margin: 10 }
Self { tournament: String::new(), update: Some(1),fullscreen:Some(false), smash_key: String::new(), font_size: 30 , font_size_departure : 45, margin: 10,tournament_image: None }
}
}