mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Merge remote-tracking branch 'origin/GP-628-dragonmacher-dialog-issues'
(fixes #2398, #2480)
This commit is contained in:
commit
0d01b72af9
29 changed files with 303 additions and 195 deletions
|
@ -68,10 +68,16 @@ public class WrappingTaskMonitor implements TaskMonitor {
|
|||
delegate.removeCancelledListener(l);
|
||||
}
|
||||
|
||||
newDelegate.initialize(delegate.getMaximum());
|
||||
if (delegate.isIndeterminate()) {
|
||||
newDelegate.setIndeterminate(true);
|
||||
}
|
||||
else {
|
||||
newDelegate.setIndeterminate(false);
|
||||
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