Skip to content

Commit

Permalink
Merge pull request #3310 from CommandPost/issue/3285-rotatation-typo
Browse files Browse the repository at this point in the history
Fixed typo in rotationSmooth
  • Loading branch information
latenitefilms committed Jan 18, 2024
2 parents a56fceb + f2d97dd commit 84c664c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function VideoInspector:initialize(parent)
smoothing = slider "FFStabilizationInertiaCamSmooth",
tripodMode = checkBox "FFStabilizationUseTripodMode",
translationSmooth = slider "FFStabilizationTranslationSmooth",
rotationSmoooth = slider "FFStabilizationRotationSmooth",
rotationSmooth = slider "FFStabilizationRotationSmooth",
scaleSmooth = slider "FFStabilizationScaleSmooth",
},

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/finalcutpro/tangent/video.lua
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ function plugin.init(deps)
-- Translation Smooth / Rotation Smooth / Scale Smooth / Smoothing:
--------------------------------------------------------------------------------
id = sliderParameter(stabilizationGroup, stabilization:translationSmooth(), id, 0, 4.5, 0.1, 1.5)
id = sliderParameter(stabilizationGroup, stabilization:rotationSmoooth(), id, 0, 4.5, 0.1, 1.5)
id = sliderParameter(stabilizationGroup, stabilization:rotationSmooth(), id, 0, 4.5, 0.1, 1.5)
id = sliderParameter(stabilizationGroup, stabilization:scaleSmooth(), id, 0, 4.5, 0.1, 1.5)
id = sliderParameter(stabilizationGroup, stabilization:smoothing(), id, 0, 3, 0.1, 1)

Expand Down

0 comments on commit 84c664c

Please sign in to comment.