mirror of
https://github.com/ppy/osu.git
synced 2025-02-05 13:53:11 +08:00
Adjust execution order
This commit is contained in:
parent
722fa228ce
commit
1d3fd65d86
@ -32,7 +32,7 @@ namespace osu.Game.Screens.Edit
|
|||||||
|
|
||||||
// We can avoid potentially thousands of objects being added to the input sub-tree since item selection is being handled by the BackgroundFlow
|
// We can avoid potentially thousands of objects being added to the input sub-tree since item selection is being handled by the BackgroundFlow
|
||||||
// and no items in the underlying table are clickable.
|
// and no items in the underlying table are clickable.
|
||||||
protected override bool ShouldBeConsideredForInput(Drawable child) => base.ShouldBeConsideredForInput(child) && child == BackgroundFlow;
|
protected override bool ShouldBeConsideredForInput(Drawable child) => child == BackgroundFlow && base.ShouldBeConsideredForInput(child);
|
||||||
|
|
||||||
protected EditorTable()
|
protected EditorTable()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user