mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Change to use ReferenceEquals
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user