1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-23 18:13:21 +08:00

Stop beat divisor "slider" from accepting focus

This commit is contained in:
Dean Herbert 2025-02-17 15:06:35 +09:00
parent 20d89f3c87
commit d5566831d2
No known key found for this signature in database

View File

@ -398,6 +398,8 @@ namespace osu.Game.Screens.Edit.Compose.Components
private readonly BindableBeatDivisor beatDivisor; private readonly BindableBeatDivisor beatDivisor;
public override bool AcceptsFocus => false;
public TickSliderBar(BindableBeatDivisor beatDivisor) public TickSliderBar(BindableBeatDivisor beatDivisor)
{ {
CurrentNumber.BindTo(this.beatDivisor = beatDivisor); CurrentNumber.BindTo(this.beatDivisor = beatDivisor);