From 82676041b4a6db332ec53661bfbb45bcde40ca05 Mon Sep 17 00:00:00 2001 From: lgztx Date: Sun, 28 Jun 2026 22:23:29 +0800 Subject: [PATCH] Fix Repeat option not applied in CustomAnimation --- .../src/Xaml/Abstract/CustomAnimation{TValue,TKeyFrame}.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/components/Animations/src/Xaml/Abstract/CustomAnimation{TValue,TKeyFrame}.cs b/components/Animations/src/Xaml/Abstract/CustomAnimation{TValue,TKeyFrame}.cs index 201a8865..05aa4894 100644 --- a/components/Animations/src/Xaml/Abstract/CustomAnimation{TValue,TKeyFrame}.cs +++ b/components/Animations/src/Xaml/Abstract/CustomAnimation{TValue,TKeyFrame}.cs @@ -50,6 +50,7 @@ public override AnimationBuilder AppendToBuilder(AnimationBuilder builder, TimeS state: (this, easingTypeHint, easingModeHint), delay: Delay ?? delayHint ?? DefaultDelay, duration: Duration ?? durationHint ?? DefaultDuration, + repeatOption: Repeat, delayBehavior: DelayBehavior, layer: Layer, build: static (b, s) => s.This.AppendToBuilder(b, s.EasingTypeHint, s.EasingModeHint));