mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-628 - Dialogs - fixed timing bug that caused the progress dialog to
sometimes not show progress
This commit is contained in:
parent
a20d77a27b
commit
d8166ff6ec
3 changed files with 18 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue