mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Fix row selected colour flicker when changing offset rapidly
This commit is contained in:
@ -99,6 +99,15 @@ namespace osu.Game.Screens.Edit
|
|||||||
colourSelected = colours.Colour3;
|
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;
|
private bool selected;
|
||||||
|
|
||||||
public bool Selected
|
public bool Selected
|
||||||
|
Reference in New Issue
Block a user