Skip to content

Commit

Permalink
Internal supports can't be merged with other solid surfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
alranel committed Jun 23, 2013
1 parent ff7daad commit 39f770d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Slic3r/Surface.pm
Expand Up @@ -113,11 +113,11 @@ sub p {
sub is_solid {
my $self = shift;
my $type = $self->surface_type;
# S_TYPE_INTERNALBRIDGE is not solid because we can't merge it with other solid types
# S_TYPE_INTERNALBRIDGE and S_TYPE_INTERNALSUPPORT are not solid
# because we can't merge it with other solid types
return $type == S_TYPE_TOP
|| $type == S_TYPE_BOTTOM
|| $type == S_TYPE_INTERNALSOLID
|| $type == S_TYPE_INTERNALSUPPORT;
|| $type == S_TYPE_INTERNALSOLID;
}

sub is_bridge {
Expand Down

0 comments on commit 39f770d

Please sign in to comment.