1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 12:53:11 +08:00

EditorTimingTimeline -> EditorMiniTimeline

This commit is contained in:
smoogipooo 2017-09-20 15:50:32 +09:00
parent 252121968d
commit fd278256ad
2 changed files with 6 additions and 6 deletions

View File

@ -22,11 +22,11 @@ using osu.Game.Graphics;
namespace osu.Game.Tests.Visual
{
internal class TestCaseEditorTimingTimeline : OsuTestCase
internal class TestCaseEditorMiniTimeline : OsuTestCase
{
public TestCaseEditorTimingTimeline()
public TestCaseEditorMiniTimeline()
{
Add(new TimingTimeline
Add(new MiniTimeline
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
@ -49,7 +49,7 @@ namespace osu.Game.Tests.Visual
osuGame.Beatmap.Value = beatmaps.GetWorkingBeatmap(setInfo.Beatmaps[0]);
}
private class TimingTimeline : CompositeDrawable
private class MiniTimeline : CompositeDrawable
{
private const float corner_radius = 5;
private const float contents_padding = 15;
@ -64,7 +64,7 @@ namespace osu.Game.Tests.Visual
private readonly Bindable<WorkingBeatmap> beatmap = new Bindable<WorkingBeatmap>();
public TimingTimeline()
public MiniTimeline()
{
Masking = true;
CornerRadius = 5;

View File

@ -733,7 +733,7 @@
<Compile Include="Tests\Visual\TestCaseDrawableRoom.cs" />
<Compile Include="Tests\Visual\TestCaseDrawings.cs" />
<Compile Include="Tests\Visual\TestCaseEditorMenuBar.cs" />
<Compile Include="Tests\Visual\TestCaseEditorTimingTimeline.cs" />
<Compile Include="Tests\Visual\TestCaseEditorMiniTimeline.cs" />
<Compile Include="Tests\Visual\TestCaseGamefield.cs" />
<Compile Include="Tests\Visual\TestCaseGraph.cs" />
<Compile Include="Tests\Visual\TestCaseKeyConfiguration.cs" />