Pointer display

This commit is contained in:
2025-08-20 15:34:13 +02:00
parent 83a1ae739d
commit 45cb47eb71
4 changed files with 40 additions and 0 deletions
@@ -759,6 +759,7 @@ public class Controller {
public void setLaserPos(String pos){
try {
getMainFrame().evalAsync("set_laser_pos(" + ((pos==null) ? "" : ("'" + pos + "'") ) + ")" ,true);
getMainFrame().basePlatePanel.pointPuck((pos==null) ? null : basePlate.getPuckByName(pos));
} catch (Interpreter.InterpreterStateException ex) {
Logger.getLogger(Controller.class.getName()).log(Level.SEVERE, null, ex);
}