1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 12:27:26 +08:00

Consume framework change to avoid weird unbind flow

This commit is contained in:
Dean Herbert 2024-09-27 17:41:27 +09:00
parent 92ee86e3dd
commit 371cee1617
No known key found for this signature in database

View File

@ -446,11 +446,7 @@ namespace osu.Game
case LinkAction.SearchBeatmapSet:
if (link.Argument is LocalisableString localisable)
{
var localised = Localisation.GetLocalisedBindableString(localisable);
SearchBeatmapSet(localised.Value);
localised.UnbindAll();
}
SearchBeatmapSet(Localisation.GetLocalisedString(localisable));
else
SearchBeatmapSet(argString);