This commit is contained in:
2025-09-09 18:32:30 +02:00
parent 49b31b74ba
commit 5e752ba302
4 changed files with 17 additions and 17 deletions

View File

@@ -267,14 +267,14 @@ public class ScreenPanelSF extends Panel implements CamServerViewer.CamServerVie
c.gridy = 1;
panel.add(comboLogbook, c);
c.gridy = 0;
panel.add(new JLabel(Context.getInterpreter().getExecutionPars().getPath()), c);
panel.add(new JLabel(Context.getSequencer().getExecutionPars().getPath()), c);
if (SwingUtils.showOption(getTopLevel(), "Success", panel, OptionType.OkCancel) == OptionResult.Yes) {
StringBuilder message = new StringBuilder();
message.append("Camera: ").append(name).append("\n");
message.append("Screen: ").append(String.valueOf(valueScreen.getLabel().getText())).append("\n");
message.append("Filter: ").append(String.valueOf(valueFilter.getLabel().getText())).append("\n");
message.append("Data file: ").append(Context.getInterpreter().getExecutionPars().getPath()).append("\n");
message.append("Data file: ").append(Context.getSequencer().getExecutionPars().getPath()).append("\n");
message.append("Comment: ").append(textComment.getText()).append("\n");
//Add slicing message
Overlay[] fitOv = camServerViewer.getFitOverlays();