1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 17:15:36 +08:00

Apply review fixes

This commit is contained in:
Dean Herbert 2018-04-05 21:06:48 +09:00
parent 345cfb077d
commit 5749e71560
2 changed files with 1 additions and 2 deletions

View File

@ -93,7 +93,7 @@ namespace osu.Game.Rulesets.Edit
{
selectionRequested = false;
if (State == SelectionState.NotSelected && !selectionRequested)
if (State == SelectionState.NotSelected)
{
SelectionRequested?.Invoke(this, state);
selectionRequested = true;

View File

@ -133,7 +133,6 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Layers
if (mask.IsSelected)
return;
DeselectAll?.Invoke();
mask.Select();
}