Changed the maximum allowed value for the pass number

This commit is contained in:
Andras Fuchs 2020-02-04 14:34:05 +01:00
parent 498b7a4140
commit 760b44d9f9
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ public class AutorouteSettings implements java.io.Serializable
public void set_pass_no(int p_value)
{
start_pass_no = Math.max(p_value, 1);
start_pass_no = Math.min(start_pass_no, 99);
start_pass_no = Math.min(start_pass_no, 99999);
}
public int get_pass_no()