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