IDEMPIERE-4397 Hide ProcessModalDialog in Autostart (#204)
Show only BusyDialog when autostarting process.
This commit is contained in:
parent
a4bfdb27e7
commit
fc0c7ed81c
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue