Fix extrude w/o pipe (#542)
This commit is contained in:
@ -305,7 +305,11 @@ export function extrudeSketch(
|
|||||||
}
|
}
|
||||||
const name = findUniqueName(node, 'part')
|
const name = findUniqueName(node, 'part')
|
||||||
const VariableDeclaration = createVariableDeclaration(name, extrudeCall)
|
const VariableDeclaration = createVariableDeclaration(name, extrudeCall)
|
||||||
const showCallIndex = getShowIndex(_node)
|
let showCallIndex = getShowIndex(_node)
|
||||||
|
if (showCallIndex == -1) {
|
||||||
|
// We didn't find a show, so let's just append everything
|
||||||
|
showCallIndex = _node.body.length
|
||||||
|
}
|
||||||
_node.body.splice(showCallIndex, 0, VariableDeclaration)
|
_node.body.splice(showCallIndex, 0, VariableDeclaration)
|
||||||
const pathToExtrudeArg: PathToNode = [
|
const pathToExtrudeArg: PathToNode = [
|
||||||
['body', ''],
|
['body', ''],
|
||||||
|
|||||||
Reference in New Issue
Block a user