mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 12:33:01 +08:00
Correctly make fullscreen overlays block keyboard input from drawables behind them
- [ ] Depends on #1711 to get correct global binding handling.
This commit is contained in:
parent
504ba1d6bc
commit
1895b16d67
@ -31,6 +31,8 @@ namespace osu.Game.Overlays.Mods
|
||||
protected readonly OsuSpriteText MultiplierLabel;
|
||||
private readonly FillFlowContainer footerContainer;
|
||||
|
||||
protected override bool BlockPassThroughKeyboard => false;
|
||||
|
||||
protected readonly FillFlowContainer<ModSection> ModSectionsContainer;
|
||||
|
||||
public readonly Bindable<IEnumerable<Mod>> SelectedMods = new Bindable<IEnumerable<Mod>>();
|
||||
|
@ -28,6 +28,8 @@ namespace osu.Game.Overlays
|
||||
|
||||
private readonly Container contentContainer;
|
||||
|
||||
protected override bool BlockPassThroughKeyboard => true;
|
||||
|
||||
protected override Container<Drawable> Content => contentContainer;
|
||||
|
||||
protected Color4 FirstWaveColour
|
||||
|
Loading…
Reference in New Issue
Block a user