Skip to content

Commit

Permalink
fixes #1684: Sweep ignores the list of subshapes
Browse files Browse the repository at this point in the history
  • Loading branch information
5263 authored and wwmayer committed Aug 15, 2014
1 parent 941f7da commit 4ba56b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Part/App/PartFeatures.cpp
Expand Up @@ -349,7 +349,7 @@ App::DocumentObjectExecReturn *Sweep::execute(void)
}
path = mkWire.Wire();
}
if (shape._Shape.ShapeType() == TopAbs_EDGE) {
else if (shape._Shape.ShapeType() == TopAbs_EDGE) {
path = shape._Shape;
}
else if (shape._Shape.ShapeType() == TopAbs_WIRE) {
Expand Down

0 comments on commit 4ba56b5

Please sign in to comment.