mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 18:27:26 +08:00
Allow ctrl-tabbing on more tab controls (#7319)
Allow ctrl-tabbing on more tab controls
This commit is contained in:
commit
3862bbfa25
@ -52,7 +52,6 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
public override bool HandleNonPositionalInput => State == Visibility.Visible;
|
||||
public override bool HandlePositionalInput => State == Visibility.Visible;
|
||||
public override bool IsRemovable => true;
|
||||
|
||||
private Visibility state;
|
||||
|
||||
|
@ -171,6 +171,7 @@ namespace osu.Game.Overlays
|
||||
d.Origin = Anchor.BottomLeft;
|
||||
d.RelativeSizeAxes = Axes.Both;
|
||||
d.OnRequestLeave = channelManager.LeaveChannel;
|
||||
d.IsSwitchable = true;
|
||||
}),
|
||||
}
|
||||
},
|
||||
|
@ -48,6 +48,7 @@ namespace osu.Game.Screens.Select
|
||||
Anchor = Anchor.BottomLeft,
|
||||
Origin = Anchor.BottomLeft,
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
IsSwitchable = true,
|
||||
},
|
||||
},
|
||||
modsCheckbox = new OsuTabControlCheckbox
|
||||
|
Loading…
Reference in New Issue
Block a user