"Copied URL" -> "URL copied"

This commit is contained in:
Andrew Hong
2022-07-27 21:52:28 -04:00
parent 2d4655f61e
commit ac39d3a142
2 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ namespace osu.Game.Graphics.UserInterface
if (Link != null)
{
items.Add(new OsuMenuItem("Open", MenuItemType.Standard, () => host.OpenUrlExternally(Link)));
items.Add(new OsuMenuItem("Copy URL", MenuItemType.Standard, () => copyUrl()));
items.Add(new OsuMenuItem("Copy URL", MenuItemType.Standard, copyUrl));
}
return items.ToArray();