Skip to content

Commit

Permalink
Merge pull request #226 from hmunktell/fix-zig_zag_ramp
Browse files Browse the repository at this point in the history
Fix zig zag ramp
  • Loading branch information
SpectralVectors authored Dec 29, 2024
2 parents 812eb47 + cd9a74c commit 2dc6970
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/addons/cam/ui/panels/movement_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def draw(self, context):
subcol = panel.column(align=True)
subcol.enabled = self.op.movement.ramp
row = subcol.row()
row.prop(self.op.movement, "Zigzag_ramp", text="Zigzag Ramp")
row.prop(self.op.movement, "zig_zag_ramp", text="Zigzag Ramp")
row = subcol.row()
row.use_property_split = True
row.prop(self.op.movement, "ramp_in_angle", text="In Angle")
Expand Down
2 changes: 1 addition & 1 deletion scripts/addons/cam/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__=(1,0,62)
__version__ = (1, 0, 62)

0 comments on commit 2dc6970

Please sign in to comment.