mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 13:37:25 +08:00
Move property override below ctor
This commit is contained in:
parent
5950ba3656
commit
68b3dc01df
@ -17,8 +17,6 @@ namespace osu.Game.Overlays
|
||||
{
|
||||
public class OverlayRulesetTabItem : TabItem<RulesetInfo>
|
||||
{
|
||||
public override bool PropagatePositionalInputSubTree => Enabled.Value && !Active.Value && base.PropagatePositionalInputSubTree;
|
||||
|
||||
private Color4 accentColour;
|
||||
|
||||
protected virtual Color4 AccentColour
|
||||
@ -69,6 +67,8 @@ namespace osu.Game.Overlays
|
||||
Enabled.BindValueChanged(_ => updateState(), true);
|
||||
}
|
||||
|
||||
public override bool PropagatePositionalInputSubTree => Enabled.Value && !Active.Value && base.PropagatePositionalInputSubTree;
|
||||
|
||||
protected override bool OnHover(HoverEvent e)
|
||||
{
|
||||
base.OnHover(e);
|
||||
|
Loading…
Reference in New Issue
Block a user