Skip to content

Commit

Permalink
Updated name of button
Browse files Browse the repository at this point in the history
  • Loading branch information
snwinz committed Mar 24, 2022
1 parent 2791909 commit 8974d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/gui/view/FunctionInputFormatView.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private HBox getControlButtons() {
});
Button showPotentialJson = new Button("Show potential input");
showPotentialJson.setOnAction(e -> controller.showPotentialInput(functionInputFormat));
Button showPotentialJsonWithContent = new Button("Show potential input");
Button showPotentialJsonWithContent = new Button("Show potential input with content");
showPotentialJsonWithContent.setOnAction(e -> controller.showPotentialInputWithContent(functionInputFormat));
final HBox hbox = new HBox();
hbox.getChildren().addAll(showPotentialJson, showPotentialJsonWithContent, updateButton);
Expand Down

0 comments on commit 8974d85

Please sign in to comment.