Skip to content

Commit

Permalink
feat(Lensflare): scale fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andretchen0 committed Sep 8, 2023
1 parent f8c69c0 commit c439895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/abstractions/Lensflare/component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const lensflareElementPropsToLensflareElement = (p: LensflareElementProps) => {
const updateThreeElements = () => {
while (lensflareElementPropsArray.value.length > threeElements.length) {
const element = lensflareElementPropsToLensflareElement(lensflareElementPropsArray.value[threeElements.length])
const element = { ... lensflareElementPropsToLensflareElement(lensflareElementPropsArray.value[threeElements.length]) };
threeElements.push(element)
threeLensflare.addElement(element)
}
Expand Down

0 comments on commit c439895

Please sign in to comment.