mirror of https://github.com/ppy/osu
Change `LeftContent` autosize duration to match main content to reduce visual awkwards
This commit is contained in:
parent
dc5c9837ed
commit
4357bb1040
|
@ -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(() =>
|
||||
|
|
Loading…
Reference in New Issue