mirror of
https://github.com/ppy/osu
synced 2025-01-28 08:43:05 +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)
|
BackgroundFlow.Add(new RowBackground(group)
|
||||||
{
|
{
|
||||||
Selected = group.Equals(selectedGroup?.Value),
|
Selected = ReferenceEquals(group, selectedGroup?.Value),
|
||||||
Action = () =>
|
Action = () =>
|
||||||
{
|
{
|
||||||
selectedGroup.Value = group;
|
selectedGroup.Value = group;
|
||||||
|
Loading…
Reference in New Issue
Block a user