Make collection name a bindable

This commit is contained in:
smoogipoo
2020-09-05 04:43:51 +09:00
parent 345fb9d8e0
commit 4b4dd02942
7 changed files with 13 additions and 10 deletions

View File

@ -15,7 +15,7 @@ namespace osu.Game.Collections
public DeleteCollectionDialog(BeatmapCollection collection)
{
HeaderText = "Confirm deletion of";
BodyText = collection.Name;
BodyText = collection.Name.Value;
Icon = FontAwesome.Regular.TrashAlt;