1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-31 17:52:54 +08:00

fix code quality

This commit is contained in:
OliBomby 2023-08-16 23:09:04 +02:00
parent 4ff58c6818
commit 88e6fe72dc

View File

@ -394,10 +394,10 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
if (e.ShiftPressed)
{
string? bank = banks.ElementAtOrDefault(rightIndex);
updateBank(bank);
string? newBank = banks.ElementAtOrDefault(rightIndex);
updateBank(newBank);
updateBankText();
updateAdditionBank(bank);
updateAdditionBank(newBank);
updateAdditionBankText();
}
else