Skip to content

Commit

Permalink
Fix extrusion form defaults (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou authored Jun 25, 2024
1 parent a88be8d commit 71e093c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/base/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ const OPERATORS = {
const sel0 = getSelectedMeshName(selected, 0);
return {
Name: newName('Extrusion', model),
Base: [sel0 || objects[0].name || ''],
Base: sel0 || objects[0].name || '',
Dir: [0, 0, 1],
LengthFwd: 10,
LengthRev: 0,
Expand Down

0 comments on commit 71e093c

Please sign in to comment.