fix: borders showing on launch
This commit is contained in:
parent
86f7fc12b4
commit
a894a02e66
1 changed files with 7 additions and 7 deletions
|
|
@ -43,13 +43,13 @@ struct State {
|
|||
|
||||
impl State {
|
||||
fn new() -> (Self, Task<Message>) {
|
||||
(
|
||||
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<Message> {
|
||||
match message {
|
||||
|
|
|
|||
Loading…
Reference in a new issue