Add key binding to deselect all mods

Defaults to `Backspace`.
This commit is contained in:
Dean Herbert
2022-05-15 02:39:54 +09:00
parent 6e74244022
commit a759cf2dab
4 changed files with 30 additions and 1 deletions

View File

@ -508,6 +508,10 @@ namespace osu.Game.Overlays.Mods
hideOverlay(true);
return true;
}
case GlobalAction.DeselectAllMods:
DeselectAll();
return true;
}
return base.OnPressed(e);