Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Commit

Permalink
Bugfix for progress notifier
Browse files Browse the repository at this point in the history
Percentage of the progress was not used in java api.
  • Loading branch information
FDIM committed Sep 30, 2015
1 parent 5e931b2 commit f330a2d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ public class ProgressValues {
private Rect textRect;

public ProgressValues(int percent, Rect wordRect, Rect textRect) {
this.percent = percent;
this.wordRect = wordRect;
this.textRect = textRect;
}
Expand Down

0 comments on commit f330a2d

Please sign in to comment.