Fixed InspectCode

This commit is contained in:
Denrage
2021-04-20 14:53:35 +02:00
parent 583754b22a
commit e9571b72cf
2 changed files with 3 additions and 9 deletions

View File

@ -142,11 +142,6 @@ namespace osu.Game.Screens.Select
}
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
}
public class WedgeInfoText : Container
{
public FillFlowContainer MapperContainer { get; private set; }
@ -394,7 +389,7 @@ namespace osu.Game.Screens.Select
}
};
mods.BindValueChanged(mods => refreshModInformation(mods), true);
mods.BindValueChanged(refreshModInformation, true);
}
private void refreshModInformation(ValueChangedEvent<IReadOnlyList<Mod>> modsChangedEvent)
@ -470,7 +465,7 @@ namespace osu.Game.Screens.Select
}
};
starDifficulty.BindValueChanged(valueChangedEvent => setColour(valueChangedEvent), true);
starDifficulty.BindValueChanged(setColour, true);
}
private void setColour(ValueChangedEvent<StarDifficulty?> valueChanged)