Fix multiple operation progress, fixes #842
This commit is contained in:
parent
1880d0a270
commit
3cce822ffc
1 changed files with 2 additions and 2 deletions
|
|
@ -4292,13 +4292,13 @@ impl Application for App {
|
|||
"operations-running-finished",
|
||||
running = running,
|
||||
finished = finished,
|
||||
percent = (total_progress as i32)
|
||||
percent = ((total_progress * 100.0) as i32)
|
||||
);
|
||||
} else {
|
||||
title = fl!(
|
||||
"operations-running",
|
||||
running = running,
|
||||
percent = (total_progress as i32)
|
||||
percent = ((total_progress * 100.0) as i32)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue