mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-05 14:55:06 +08:00
Warn user if supplied preset name is not valid
This commit is contained in:
parent
b37a77ee63
commit
23fd8de1f5
@ -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…
x
Reference in New Issue
Block a user