[ 1672618 ] Enable processes to run silently
Forgot to enable this functionality also for ProcessModalDialog (eg. used by buttons)
This commit is contained in:
parent
a9a2996718
commit
a0f2d1d7fc
|
@ -261,6 +261,11 @@ public class ProcessModalDialog extends CDialog
|
||||||
if (m_autoStart)
|
if (m_autoStart)
|
||||||
bOK.doClick(); // don't ask first click
|
bOK.doClick(); // don't ask first click
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check if the process is a silent one
|
||||||
|
if(m_ShowHelp != null && m_ShowHelp.equals("S"))
|
||||||
|
bOK.doClick();
|
||||||
|
|
||||||
dialog.revalidate();
|
dialog.revalidate();
|
||||||
return true;
|
return true;
|
||||||
} // init
|
} // init
|
||||||
|
|
Loading…
Reference in New Issue