diff --git a/osu.Game/Collections/DrawableCollectionListItem.cs b/osu.Game/Collections/DrawableCollectionListItem.cs index 988a3443c3..e2ec25337e 100644 --- a/osu.Game/Collections/DrawableCollectionListItem.cs +++ b/osu.Game/Collections/DrawableCollectionListItem.cs @@ -102,7 +102,6 @@ namespace osu.Game.Collections RelativeSizeAxes = Axes.Both, Size = Vector2.One, CornerRadius = item_height / 2, - Current = collection.Name, PlaceholderText = IsCreated.Value ? string.Empty : "Create a new collection" }, } @@ -114,6 +113,9 @@ namespace osu.Game.Collections { base.LoadComplete(); + // Bind late, as the collection name may change externally while still loading. + textBox.Current = collection.Name; + collectionName.BindValueChanged(_ => createNewCollection(), true); IsCreated.BindValueChanged(created => textBoxPaddingContainer.Padding = new MarginPadding { Right = created.NewValue ? button_width : 0 }, true); }