diff --git a/src/app/mod.rs b/src/app/mod.rs index c46d289..8725669 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -43,13 +43,13 @@ struct State { impl State { fn new() -> (Self, Task) { - ( - Self { - is_main_section_shown: true, - ..Default::default() - }, - info_stream::create(), - ) + let mut state = Self { + is_main_section_shown: true, + ..Default::default() + }; + state.total_cpu_graph.show_borders = false; + + (state, info_stream::create()) } fn update(&mut self, message: Message) -> Task { match message {