auto selection different behavior between Matlab2014 and Matlab2017

1 view (last 30 days)
Hi I dock the matlab application into a java eclipse environement with this type of api command ( the application is launch in automation):
try {
executeEval("desktop = com.mathworks.mde.desk.MLDesktop.getInstance;");
executeEval(String.format("desktop.setClientDocked('%s', %b);", windowId, !undock));
} catch (Exception e) {
LOGGER.error("[undockWindowFromMatlab] failed to " + (undock ? "undock" : "dock") + " Matlab '" + windowId + "'", e);
return false;
}
return true;
With Matlab 2014 when the application is docked the If I double clic a name of an input the full name is selected.
With Matlab 2017 in the same configuration the result is not the same : the double clic is not working with the wndow docked. is there any specific option we have to activate withe matlab 2017 and next other version to get the same behavior we have with Matlab 2014? or is a known issue ?

Answers (0)

Categories

Find more on MATLAB Compiler in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!