Change `LeftContent` autosize duration to match main content to reduce visual awkwards

This commit is contained in:
Dean Herbert 2023-12-15 16:01:07 +09:00
parent dc5c9837ed
commit 4357bb1040
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -144,8 +144,8 @@ protected override void OnHoverLost(HoverLostEvent e)
private void startAnimating()
{
Content.AutoSizeEasing = Easing.OutQuint;
Content.AutoSizeDuration = transition_duration;
LeftContent.AutoSizeEasing = Content.AutoSizeEasing = Easing.OutQuint;
LeftContent.AutoSizeDuration = Content.AutoSizeDuration = transition_duration;
}
private void updateValues() => Scheduler.AddOnce(() =>