Merge branch 'master' into remove-legacy-id

This commit is contained in:
Dean Herbert 2019-12-25 21:25:33 +09:00 committed by GitHub
commit 9b0af901ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,6 @@ namespace osu.Game.Graphics.UserInterface
public override bool HandleNonPositionalInput => State == Visibility.Visible; public override bool HandleNonPositionalInput => State == Visibility.Visible;
public override bool HandlePositionalInput => State == Visibility.Visible; public override bool HandlePositionalInput => State == Visibility.Visible;
public override bool IsRemovable => true;
private Visibility state; private Visibility state;

View File

@ -171,6 +171,7 @@ namespace osu.Game.Overlays
d.Origin = Anchor.BottomLeft; d.Origin = Anchor.BottomLeft;
d.RelativeSizeAxes = Axes.Both; d.RelativeSizeAxes = Axes.Both;
d.OnRequestLeave = channelManager.LeaveChannel; d.OnRequestLeave = channelManager.LeaveChannel;
d.IsSwitchable = true;
}), }),
} }
}, },

View File

@ -48,6 +48,7 @@ namespace osu.Game.Screens.Select
Anchor = Anchor.BottomLeft, Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft, Origin = Anchor.BottomLeft,
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
IsSwitchable = true,
}, },
}, },
modsCheckbox = new OsuTabControlCheckbox modsCheckbox = new OsuTabControlCheckbox