1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00

Rename class to TimelineTickDisplay

This commit is contained in:
Dean Herbert 2020-01-27 18:07:46 +09:00
parent 084fa2f04a
commit 493390b750
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ namespace osu.Game.Tests.Visual.Editor
[TestFixture]
public class TestSceneTimelineBeatLineDisplay : TimelineTestScene
{
public override Drawable CreateTestComponent() => new TimelineBeatLineDisplay();
public override Drawable CreateTestComponent() => new TimelineTickDisplay();
[BackgroundDependencyLoader]
private void load()

View File

@ -12,7 +12,7 @@ using osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations;
namespace osu.Game.Screens.Edit.Compose.Components.Timeline
{
public class TimelineBeatLineDisplay : TimelinePart
public class TimelineTickDisplay : TimelinePart
{
[Resolved]
private EditorBeatmap beatmap { get; set; }
@ -26,7 +26,7 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
[Resolved]
private OsuColour colours { get; set; }
public TimelineBeatLineDisplay()
public TimelineTickDisplay()
{
RelativeSizeAxes = Axes.Both;
}

View File

@ -104,7 +104,7 @@ namespace osu.Game.Screens.Edit
RelativeSizeAxes = Axes.Both,
Children = new[]
{
new TimelineBeatLineDisplay(),
new TimelineTickDisplay(),
CreateTimelineContent(),
}
}, timelineContainer.Add);