Remove redundant cast

This commit is contained in:
Dean Herbert 2024-03-16 13:18:42 +08:00
parent c0ae94dc60
commit 15c0b1a2ec
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ protected override void OnHoverLost(HoverLostEvent e)
private void updateFadeState()
{
// Matches SettingsToolboxGroup
background.FadeTo(IsHovered ? 1 : 0.1f, (float)500, Easing.OutQuint);
background.FadeTo(IsHovered ? 1 : 0.1f, 500, Easing.OutQuint);
}
}
}