Skip to content

Commit

Permalink
Merge pull request #21807 from Joehuu/external-link-open-highlight
Browse files Browse the repository at this point in the history
Highlight "open" option on external link button context menu
  • Loading branch information
peppy authored Dec 27, 2022
2 parents bcaff37 + 777ffcf commit 38a674c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Graphics/UserInterface/ExternalLinkButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public MenuItem[] ContextMenuItems

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));
}

Expand Down

0 comments on commit 38a674c

Please sign in to comment.