mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-05 04:04:04 +08:00
Allow negative values in validation...
This commit is contained in:
parent
63ba894260
commit
71057b54a9
@ -1357,8 +1357,8 @@ sub validate {
|
||||
foreach my $value (@values) {
|
||||
if ($type eq 'i' || $type eq 'f') {
|
||||
die "Invalid value for $opt_key\n"
|
||||
if ($type eq 'i' && $value !~ /^\d+$/)
|
||||
|| ($type eq 'f' && $value !~ /^(?:\d+|\d*\.\d+)$/)
|
||||
if ($type eq 'i' && $value !~ /^-?\d+$/)
|
||||
|| ($type eq 'f' && $value !~ /^-?(?:\d+|\d*\.\d+)$/)
|
||||
|| (defined $opt->{min} && $value < $opt->{min})
|
||||
|| (defined $opt->{max} && $value > $opt->{max});
|
||||
} elsif ($type eq 's' && $opt->{type} eq 'select') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user