mirror of
https://github.com/ppy/osu
synced 2025-01-14 10:01:14 +00:00
Change to use ReferenceEquals
This commit is contained in:
parent
6a26461683
commit
9763a58392
@ -44,7 +44,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
{
|
||||
BackgroundFlow.Add(new RowBackground(group)
|
||||
{
|
||||
Selected = group.Equals(selectedGroup?.Value),
|
||||
Selected = ReferenceEquals(group, selectedGroup?.Value),
|
||||
Action = () =>
|
||||
{
|
||||
selectedGroup.Value = group;
|
||||
|
Loading…
Reference in New Issue
Block a user