Skip to content

Commit

Permalink
fix default value for maxZRangeMatches
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Aug 15, 2023
1 parent 9b3e41b commit b66ae2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public SerializableValuePair<Integer, Integer> convert( final String value )
public int maxNumMatches = 0;

@Parameter(names = "--maxZRangeMatches", description = "max z-range in which to load matches (default: '-1' - no limit)")
public int maxZRangeMatches = 0;
public int maxZRangeMatches = -1;

//
// for saving and running
Expand Down

0 comments on commit b66ae2e

Please sign in to comment.