Making the numbers disappear when in indeterminate mode.
This commit is contained in:
parent
127c6a258c
commit
85f9364ba3
1 changed files with 1 additions and 0 deletions
|
@ -34,6 +34,7 @@ public class ProgressDialogImplementation implements IProgress {
|
|||
if(dialog != null){
|
||||
dialog.setMessage(message);
|
||||
if (isIndeterminate()) {
|
||||
dialog.setMax(0);
|
||||
dialog.setIndeterminate(true);
|
||||
} else {
|
||||
dialog.setIndeterminate(false);
|
||||
|
|
Loading…
Reference in a new issue