mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 00:09:55 +09:00
Allow selecting all mods at free mod select using ctrl
+a
This commit is contained in:
@ -425,10 +425,7 @@ namespace osu.Game.Tests.Visual.UserInterface
|
||||
AddStep("select DT + HD", () => SelectedMods.Value = new Mod[] { new OsuModDoubleTime(), new OsuModHidden() });
|
||||
AddAssert("DT + HD selected", () => modSelectOverlay.ChildrenOfType<ModPanel>().Count(panel => panel.Active.Value) == 2);
|
||||
|
||||
AddStep("press backspace", () =>
|
||||
{
|
||||
InputManager.Key(Key.BackSpace);
|
||||
});
|
||||
AddStep("press backspace", () => InputManager.Key(Key.BackSpace));
|
||||
AddUntilStep("all mods deselected", () => !SelectedMods.Value.Any());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user