Adjust execution order

This commit is contained in:
Andrei Zavatski 2024-04-22 07:02:49 +03:00
parent 722fa228ce
commit 1d3fd65d86
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public abstract partial class EditorTable : TableContainer
// 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.
protected override bool ShouldBeConsideredForInput(Drawable child) => base.ShouldBeConsideredForInput(child) && child == BackgroundFlow;
protected override bool ShouldBeConsideredForInput(Drawable child) => child == BackgroundFlow && base.ShouldBeConsideredForInput(child);
protected EditorTable()
{