Focus textbox on control point popovers

This commit is contained in:
Salman Ahmed
2022-05-11 09:55:34 +03:00
parent 24432dffc4
commit 96db530de6
2 changed files with 12 additions and 0 deletions

View File

@ -122,6 +122,12 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
beatmap.EndChange();
});
}
protected override void LoadComplete()
{
base.LoadComplete();
ScheduleAfterChildren(() => GetContainingInputManager().ChangeFocus(sliderVelocitySlider));
}
}
}
}