Skip to content

Commit

Permalink
Display progress when creating newspaper processes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-ronge authored Apr 26, 2023
1 parent f1b7ed4 commit 2b26f7b
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 2b26f7b

Please sign in to comment.