1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 14:12:55 +08:00

Fix song progress being interactable inside toolbox button

This commit is contained in:
Dean Herbert 2021-05-17 19:05:22 +09:00
parent ecf70c1707
commit 60f3e628bc

View File

@ -92,6 +92,9 @@ namespace osu.Game.Skinning.Editor
private class ToolboxComponentButton : OsuButton
{
protected override bool ReceivePositionalInputAtSubTree(Vector2 screenSpacePos) => false;
public override bool PropagateNonPositionalInputSubTree => false;
private readonly Drawable component;
public Action<Type> RequestPlacement;