1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 00:02:54 +08:00

ScrollingTimelineContainer -> Timeline

This commit is contained in:
smoogipoo 2018-04-05 19:33:47 +09:00
parent f41d31e1db
commit a84536d343
2 changed files with 4 additions and 4 deletions

View File

@ -8,12 +8,12 @@ using osu.Game.Graphics;
namespace osu.Game.Screens.Edit.Screens.Compose.Timeline
{
public class ScrollingTimelineContainer : ZoomableScrollContainer
public class Timeline : ZoomableScrollContainer
{
public readonly Bindable<bool> WaveformVisible = new Bindable<bool>();
public readonly Bindable<WorkingBeatmap> Beatmap = new Bindable<WorkingBeatmap>();
public ScrollingTimelineContainer()
public Timeline()
{
BeatmapWaveformGraph waveform;
Child = waveform = new BeatmapWaveformGraph

View File

@ -24,7 +24,7 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Timeline
}
/// <summary>
/// Gets or sets the content zoom of this <see cref="ScrollingTimelineContainer"/>.
/// Gets or sets the content zoom of this <see cref="Timeline"/>.
/// </summary>
public int Zoom
{
@ -76,7 +76,7 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Timeline
private float startScrollOffset;
/// <summary>
/// Transforms <see cref="ScrollingTimelineContainer.zoom"/> to a new value.
/// Transforms <see cref="Timeline.zoom"/> to a new value.
/// </summary>
/// <param name="focusPoint">The focus point in the waveform, in absolute coordinates local to the waveform.</param>
/// <param name="waveformSize">The size of the waveform.</param>