mirror of
https://github.com/ppy/osu.git
synced 2024-12-05 09:42:54 +08:00
Don't reset state when changing from one selection to another in the editor
This was causing state pollution in the new selection. I can't see why this needs to happen when a selection changes to another. This fixes https://github.com/ppy/osu/issues/30839 and also the same issue happening for the new combo toggle. Tests all seem to pass, and I can't immediately find anything broken, but YMMV.
This commit is contained in:
parent
e0199386a3
commit
3ecb3b674d
@ -258,6 +258,9 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
|||||||
|
|
||||||
private void resetTernaryStates()
|
private void resetTernaryStates()
|
||||||
{
|
{
|
||||||
|
if (SelectedItems.Count > 0)
|
||||||
|
return;
|
||||||
|
|
||||||
SelectionNewComboState.Value = TernaryState.False;
|
SelectionNewComboState.Value = TernaryState.False;
|
||||||
AutoSelectionBankEnabled.Value = true;
|
AutoSelectionBankEnabled.Value = true;
|
||||||
SelectionAdditionBanksEnabled.Value = true;
|
SelectionAdditionBanksEnabled.Value = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user