Warn user if supplied preset name is not valid
This commit is contained in:
parent
b37a77ee63
commit
23fd8de1f5
1 changed files with 6 additions and 2 deletions
|
@ -535,8 +535,12 @@ sub new {
|
|||
sub accept {
|
||||
my ($self, $event) = @_;
|
||||
|
||||
if (($self->{chosen_name} = $self->{combo}->GetValue) && $self->{chosen_name} =~ /^[a-z0-9 _-]+$/i) {
|
||||
$self->EndModal(wxID_OK);
|
||||
if (($self->{chosen_name} = $self->{combo}->GetValue)) {
|
||||
if ($self->{chosen_name} =~ /^[a-z0-9 _-]+$/i) {
|
||||
$self->EndModal(wxID_OK);
|
||||
} else {
|
||||
Slic3r::GUI::show_error($self, "The supplied name is not valid.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue