Skip to content

Commit

Permalink
Merge pull request #27564 from EVAST9919/editor-blueprint-gradient
Browse files Browse the repository at this point in the history
Fix incorrect gradient application in `TimelineHitObjectBlueprint`
  • Loading branch information
bdach authored Mar 11, 2024
2 parents 2b40eff + 6ecef33 commit 9bc55be
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,12 @@ private void load(OsuColour colours)
/// </summary>
public partial class ExtendableCircle : CompositeDrawable
{
public new ColourInfo Colour
{
get => Content.Colour;
set => Content.Colour = value;
}

protected readonly Circle Content;

public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => Content.ReceivePositionalInputAt(screenSpacePos);
Expand Down

0 comments on commit 9bc55be

Please sign in to comment.