Remove localisation of "hide" string to fix incorrect case

This commit is contained in:
Dean Herbert 2022-04-24 16:37:11 +09:00
parent a40d140353
commit 999b4505d1
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ public MenuItem[] ContextMenuItems
}
if (hideRequested != null)
items.Add(new OsuMenuItem(CommonStrings.ButtonsHide, MenuItemType.Destructive, () => hideRequested(beatmapInfo)));
items.Add(new OsuMenuItem("Hide", MenuItemType.Destructive, () => hideRequested(beatmapInfo)));
return items.ToArray();
}