Skip to content

Commit

Permalink
Merge pull request #904 from crazycat256/master
Browse files Browse the repository at this point in the history
Fix error in mapping generator
  • Loading branch information
Col-E authored Jan 8, 2025
2 parents d5db816 + f2dcd3f commit b52c58d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ protected void fillConfigurator(@Nonnull BiConsumer<StringBinding, Node> sink) {
grid.addRow(2, new BoundLabel(Lang.getBinding("mapgen.filter.method-name")),
txtMethod, new BoundComboBox<>(methodPredicateId, stringPredicatesWithNull, textPredicateConverter));
grid.addRow(3, new BoundLabel(Lang.getBinding("mapgen.filter.variable-name")),
txtMethod, new BoundComboBox<>(variablePredicateId, stringPredicatesWithNull, textPredicateConverter));
txtVariable, new BoundComboBox<>(variablePredicateId, stringPredicatesWithNull, textPredicateConverter));
sink.accept(null, grid);
}
}
Expand Down

0 comments on commit b52c58d

Please sign in to comment.