GP-628 - Dialogs - fixed timing bug that caused the progress dialog to

sometimes not show progress
This commit is contained in:
dragonmacher 2021-01-29 13:03:37 -05:00
parent a20d77a27b
commit d8166ff6ec
3 changed files with 18 additions and 3 deletions

View file

@ -68,10 +68,10 @@ public class WrappingTaskMonitor implements TaskMonitor {
delegate.removeCancelledListener(l);
}
newDelegate.setIndeterminate(delegate.isIndeterminate());
newDelegate.initialize(delegate.getMaximum());
newDelegate.setProgress(delegate.getProgress());
newDelegate.setMessage(delegate.getMessage());
newDelegate.setIndeterminate(delegate.isIndeterminate());
newDelegate.setCancelEnabled(delegate.isCancelEnabled());
this.delegate = newDelegate;