IDEMPIERE-4397 Hide ProcessModalDialog in Autostart (#204)

Show only BusyDialog when autostarting process.
This commit is contained in:
igorpojzl 2020-08-04 17:46:55 +02:00 committed by GitHub
parent a4bfdb27e7
commit fc0c7ed81c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -179,6 +179,15 @@ public class ProcessModalDialog extends AbstractProcessDialog implements EventLi
getParameterPanel().restoreContext();
this.detach();
} // dispose
@Override
public void autoStart()
{
this.setBorder("none");
this.setTitle(null);
this.getFirstChild().setVisible(false);
super.autoStart();
}
@Override
public void showBusyDialog() {