Add keybind for showing profile

This commit is contained in:
Andrew Hong
2022-08-09 02:49:53 -04:00
parent fbd645f06e
commit f65b7ef058
4 changed files with 14 additions and 0 deletions

View File

@ -1138,6 +1138,10 @@ namespace osu.Game
mouseDisableButtons.Value = !mouseDisableButtons.Value;
return true;
case GlobalAction.ShowProfile:
ShowUser(new APIUser { Id = API.LocalUser.Value.Id });
return true;
case GlobalAction.RandomSkin:
// Don't allow random skin selection while in the skin editor.
// This is mainly to stop many "osu! default (modified)" skins being created via the SkinManager.EnsureMutableSkin() path.