1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-12 13:22:56 +08:00

Fic incorrect ExtendableCircle gradient

This commit is contained in:
Andrei Zavatski 2024-03-10 22:45:29 +03:00
parent 1ae8d341cc
commit 6ecef33fd7

View File

@ -471,6 +471,12 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
/// </summary> /// </summary>
public partial class ExtendableCircle : CompositeDrawable public partial class ExtendableCircle : CompositeDrawable
{ {
public new ColourInfo Colour
{
get => Content.Colour;
set => Content.Colour = value;
}
protected readonly Circle Content; protected readonly Circle Content;
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => Content.ReceivePositionalInputAt(screenSpacePos); public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => Content.ReceivePositionalInputAt(screenSpacePos);