Warn user when object couldn't be split
This commit is contained in:
parent
13e10abbbe
commit
8883df6692
@ -403,7 +403,10 @@ sub split_object {
|
|||||||
$mesh->scale($Slic3r::scaling_factor);
|
$mesh->scale($Slic3r::scaling_factor);
|
||||||
|
|
||||||
my @new_meshes = $mesh->split_mesh;
|
my @new_meshes = $mesh->split_mesh;
|
||||||
return if @new_meshes == 1;
|
if (@new_meshes == 1) {
|
||||||
|
Slic3r::GUI::warning_catcher($self)->("The selected object couldn't be splitted because it contained already a single part.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
foreach my $mesh (@new_meshes) {
|
foreach my $mesh (@new_meshes) {
|
||||||
my $object = $self->{print}->add_object_from_mesh($mesh);
|
my $object = $self->{print}->add_object_from_mesh($mesh);
|
||||||
$object->input_file($current_object->input_file);
|
$object->input_file($current_object->input_file);
|
||||||
|
Loading…
Reference in New Issue
Block a user