Skip to content

Commit

Permalink
Merge pull request #5637 from matthias-ronge/patch-74
Browse files Browse the repository at this point in the history
Display progress when creating newspaper processes
  • Loading branch information
solth authored May 11, 2023
2 parents 896e39b + 2b26f7b commit d118db2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void run() {
if (!generator.nextStep()) {
return;
}
super.setProgress(generator.getProgress() / generator.getNumberOfSteps());
super.setProgress(100 * generator.getProgress() / generator.getNumberOfSteps());
if (Thread.currentThread().isInterrupted()) {
return;
}
Expand Down

0 comments on commit d118db2

Please sign in to comment.