diff --git a/spx-gui/src/components/editor/common/config/sprite/SpriteDirection.vue b/spx-gui/src/components/editor/common/config/sprite/SpriteDirection.vue index 24b3c91c1..9017f2a47 100644 --- a/spx-gui/src/components/editor/common/config/sprite/SpriteDirection.vue +++ b/spx-gui/src/components/editor/common/config/sprite/SpriteDirection.vue @@ -52,7 +52,11 @@ const handleRotationStyleUpdate = wrapUpdateHandler( spriteContext, false ) -const handleHeadingUpdate = wrapUpdateHandler((h: number | null) => props.sprite.setHeading(h ?? 0), spriteContext) +const handleHeadingUpdate = wrapUpdateHandler( + (h: number | null) => props.sprite.setHeading(h ?? 0), + spriteContext, + false +)