Skip to content

Commit

Permalink
Fix some typos (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugow authored Jun 4, 2021
1 parent fef228d commit c1de0ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/packages/removeallmaterials/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## Explanations

The shows how to create a minimal Python tool for 3ds Max. This tools adds a menu item
to the Scripting menu to lock all transformations on the selection.
to the Scripting menu to remove all materials from the scene.

## Using the tool

Expand Down
8 changes: 4 additions & 4 deletions src/packages/transformlock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ def startup():
Hook the transform lock function to a menu item.
"""
menuhook.register(
"howtos",
"transformlock",
fcn,
menu=[ "&Scripting", "Python3 Development", "How To"],
menutext"Lock transformations for the selection",
"howtos",
lock_selection,
menu=["&Scripting", "Python3 Development", "How To"],
text="Lock transformations for the selection",
tooltip="Lock transformations for the selection")
```

0 comments on commit c1de0ad

Please sign in to comment.