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();
|
getParameterPanel().restoreContext();
|
||||||
this.detach();
|
this.detach();
|
||||||
} // dispose
|
} // dispose
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void autoStart()
|
||||||
|
{
|
||||||
|
this.setBorder("none");
|
||||||
|
this.setTitle(null);
|
||||||
|
this.getFirstChild().setVisible(false);
|
||||||
|
super.autoStart();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void showBusyDialog() {
|
public void showBusyDialog() {
|
||||||
|
|
Loading…
Reference in New Issue