Skip to content

Commit

Permalink
Added a feature to copy the selected dataset from a data box with mul…
Browse files Browse the repository at this point in the history
…tiple data models into a separate box.
  • Loading branch information
jdramsey committed Feb 4, 2024
1 parent 89c75dc commit 8a7b969
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private void setNumSplits(int numSplits) {
}

public void setup() {
this.numSplitsField = new IntTextField(this.params.getInt("numSplits", 3), 2);
this.numSplitsField = new IntTextField(this.params.getInt("numSplits", 2), 2);
this.numSplitsField.setFilter((value, oldValue) -> {
SplitCasesParamsEditor.this.setNumSplits(value);
return value;
Expand Down

0 comments on commit 8a7b969

Please sign in to comment.