1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-05 13:35:37 +08:00

Highlight "open" option on external link button context menu

This commit is contained in:
Joseph Madamba 2022-12-26 20:45:32 -08:00
parent bcaff37851
commit 777ffcf805

View File

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