From 047f4eeeb90672c19c2d1012745cfe8eb32fa1b4 Mon Sep 17 00:00:00 2001 From: Niklas Herz Date: Tue, 16 Apr 2024 11:42:55 +0200 Subject: [PATCH] add lane title --- src/main/java/de/usd/cstchef/view/RecipePanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/usd/cstchef/view/RecipePanel.java b/src/main/java/de/usd/cstchef/view/RecipePanel.java index d48ffb2..8f4cd84 100644 --- a/src/main/java/de/usd/cstchef/view/RecipePanel.java +++ b/src/main/java/de/usd/cstchef/view/RecipePanel.java @@ -273,7 +273,7 @@ public void actionPerformed(ActionEvent arg0) { operationLines.add(dummyPanel, gbc); // this is the magic!11!! for (int i = operationSteps; i > 0; i--) { - RecipeStepPanel opPanel = new RecipeStepPanel(String.valueOf(i), this); + RecipeStepPanel opPanel = new RecipeStepPanel("Lane " + String.valueOf(i), this); operationLines.add(opPanel, co, 0); JPanel panel = opPanel.getOperationsPanel();