-- Bug description --compatiblity broken with previous about DisableInteractiveMode and StartScilabpreviously, we do:DisableInteractiveMode();StartScilab(NULL,NULL,0);with 5.3beta4 it does not work:we need to modify in:int Call_ScilabOpen(char* SCIpath, BOOL advancedMode, char *ScilabStartup, int Stacksize) if (advancedMode == FALSE) { DisableInteractiveMode(); } else { setScilabMode(SCILAB_API); }and replaces by : if ((advancedMode == FALSE) || (getScilabMode() == SCILAB_NWNI)) { DisableInteractiveMode(); } else { setScilabMode(SCILAB_API); }-- Scilab error message ---- How to reproduce the bug --
Designs
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related or that one is blocking others.
Learn more.