Skip to content

Commit

Permalink
add lane title
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasherz committed Apr 16, 2024
1 parent 2e33043 commit 047f4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/usd/cstchef/view/RecipePanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 047f4ee

Please sign in to comment.