1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00

Make SelectedItem externally mutable

Not being able to externally mutate this was making reuse in new daily
challenge screen unnecessarily arduous.
This commit is contained in:
Bartłomiej Dach 2024-05-30 13:49:47 +02:00
parent d80f09e0c0
commit f135a9a923
No known key found for this signature in database

View File

@ -29,7 +29,7 @@ namespace osu.Game.Online.Rooms
/// </summary>
public partial class OnlinePlayBeatmapAvailabilityTracker : CompositeComponent
{
public readonly IBindable<PlaylistItem> SelectedItem = new Bindable<PlaylistItem>();
public readonly Bindable<PlaylistItem> SelectedItem = new Bindable<PlaylistItem>();
[Resolved]
private RealmAccess realm { get; set; } = null!;