1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 20:22:55 +08:00

Make osu! logo do something when in edit submenu

This commit is contained in:
Dean Herbert 2023-11-25 00:53:25 +09:00
parent a44edfdedd
commit a6cf1e5d2e
No known key found for this signature in database

View File

@ -311,6 +311,10 @@ namespace osu.Game.Screens.Menu
case ButtonSystemState.Play:
buttonsPlay.First().TriggerClick();
return false;
case ButtonSystemState.Edit:
buttonsEdit.First().TriggerClick();
return false;
}
}