mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 19:02:57 +08:00
Fix mod settings blocking input outside its visible area
Closes #12502.
This commit is contained in:
parent
86772869da
commit
7fc450c620
@ -245,18 +245,24 @@ namespace osu.Game.Overlays.Mods
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ModSettingsContainer = new ModSettingsContainer
|
new Container
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Anchor = Anchor.BottomRight,
|
Anchor = Anchor.BottomRight,
|
||||||
Origin = Anchor.BottomRight,
|
Origin = Anchor.BottomRight,
|
||||||
Width = 0.3f,
|
|
||||||
Alpha = 0,
|
|
||||||
Padding = new MarginPadding(30),
|
Padding = new MarginPadding(30),
|
||||||
|
Width = 0.3f,
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
ModSettingsContainer = new ModSettingsContainer
|
||||||
|
{
|
||||||
|
Alpha = 0,
|
||||||
SelectedMods = { BindTarget = SelectedMods },
|
SelectedMods = { BindTarget = SelectedMods },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
new Drawable[]
|
new Drawable[]
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user