correcting bug in progressaggregator where progress event updated the _sizes array instead of globabl _progress array (progressbar now progress more fluidly)

This commit is contained in:
Paul-Yves Lucas
2016-12-06 14:09:30 +01:00
parent a1a7f416ff
commit 256e0933aa
@@ -20,7 +20,7 @@ public class ProgressAggregator
public ProgressObserver startElement (final int index) { public ProgressObserver startElement (final int index) {
return new ProgressObserver() { return new ProgressObserver() {
public void progress (int percent) { public void progress (int percent) {
_sizes[index] = percent; _progress[index] = percent;
updateAggProgress(); updateAggProgress();
} }
}; };