From 15d48a924b996871ac51e4b23f1a555f343e281e Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 16 Apr 2021 00:58:28 +0900 Subject: [PATCH] Set the timeline's height to a sane non-zero default This isn't required but makes the initial appearance animation nicer. --- osu.Game/Screens/Edit/Compose/Components/Timeline/Timeline.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Screens/Edit/Compose/Components/Timeline/Timeline.cs b/osu.Game/Screens/Edit/Compose/Components/Timeline/Timeline.cs index 55fb557474..7e11cfb271 100644 --- a/osu.Game/Screens/Edit/Compose/Components/Timeline/Timeline.cs +++ b/osu.Game/Screens/Edit/Compose/Components/Timeline/Timeline.cs @@ -65,6 +65,7 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline this.userContent = userContent; RelativeSizeAxes = Axes.X; + Height = timeline_height; ZoomDuration = 200; ZoomEasing = Easing.OutQuint;