fix: ValueTransition init

This commit is contained in:
Zhe Fang
2026-01-09 17:54:50 -05:00
parent 9d03c8f688
commit e5fb04f577
2 changed files with 1 additions and 12 deletions

View File

@@ -12,7 +12,7 @@
<Identity
Name="37412.BetterLyrics"
Publisher="CN=E1428B0E-DC1D-4EA4-ACB1-4556569D5BA9"
Version="1.2.251.0" />
Version="1.2.252.0" />
<mp:PhoneIdentity PhoneProductId="ca4a4830-fc19-40d9-b823-53e2bff3d816" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

View File

@@ -40,17 +40,6 @@ namespace BetterLyrics.WinUI3.Helper
_targetValue = initialValue;
_totalDurationForAutoSplit = defaultTotalDuration;
if (interpolator == null)
{
// 默认缓动
SetEasingType(Enums.EasingType.EaseInOutQuad);
}
else
{
_easingType = null;
_interpolator = interpolator;
}
if (interpolator != null)
{
_interpolator = interpolator;