fix: fixed progress bar style after running game repairer

Before after that it would stop displaying current downloaded data size in MBs and so
This commit is contained in:
Observer KRypt0n_ 2023-06-08 10:11:11 +02:00
parent 9c65486a5c
commit 1c5957910e
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

View file

@ -162,6 +162,8 @@ pub fn repair_game(sender: ComponentSender<App>, progress_bar_input: Sender<Prog
progress_bar_input.send(ProgressBarMsg::UpdateProgress(i as u64, total as u64)); progress_bar_input.send(ProgressBarMsg::UpdateProgress(i as u64, total as u64));
} }
progress_bar_input.send(ProgressBarMsg::DisplayFraction(true));
} }
} }