Fix row selected colour flicker when changing offset rapidly

This commit is contained in:
Dean Herbert 2022-05-31 22:02:30 +09:00
parent a940676fc2
commit bc22079fdc

View File

@ -99,6 +99,15 @@ namespace osu.Game.Screens.Edit
colourSelected = colours.Colour3;
}
protected override void LoadComplete()
{
base.LoadComplete();
// Reduce flicker of rows when offset is being changed rapidly.
// Probably need to reconsider this.
FinishTransforms(true);
}
private bool selected;
public bool Selected