1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-23 18:22:56 +08:00

Deactivate new combo toggle on deselecting objects

Closes https://github.com/ppy/osu/issues/30713.

Was a point of discussion doing review:

	https://github.com/ppy/osu/pull/30214#discussion_r1798833139

Given it got pointed out immediately for something so minor, I'm
inclined to believe it's a rather undesirable change.
This commit is contained in:
Bartłomiej Dach 2024-11-18 15:06:13 +01:00
parent 28fb0bf909
commit 259e9ecf65
No known key found for this signature in database

View File

@ -258,8 +258,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
private void resetTernaryStates()
{
if (SelectionNewComboState.Value == TernaryState.Indeterminate)
SelectionNewComboState.Value = TernaryState.False;
SelectionNewComboState.Value = TernaryState.False;
AutoSelectionBankEnabled.Value = true;
SelectionAdditionBanksEnabled.Value = true;
SelectionBankStates[HIT_BANK_AUTO].Value = TernaryState.True;