1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:47:36 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Components/OverlinedPlaylistHeader.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
604 B
C#
Raw Normal View History

2020-12-03 16:59:39 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2020-12-25 12:38:11 +08:00
using osu.Game.Online.Rooms;
2020-12-03 16:59:39 +08:00
namespace osu.Game.Screens.OnlinePlay.Components
2020-12-03 16:59:39 +08:00
{
public class OverlinedPlaylistHeader : OverlinedHeader
{
public OverlinedPlaylistHeader()
: base("Playlist")
{
}
protected override void LoadComplete()
{
base.LoadComplete();
2020-12-03 17:06:55 +08:00
Playlist.BindCollectionChanged((_, __) => Details.Value = Playlist.GetTotalDuration(), true);
2020-12-03 16:59:39 +08:00
}
}
}