Also apply to timing textboxes

This commit is contained in:
Dean Herbert 2024-07-11 16:54:27 +09:00
parent ce93455aa8
commit 7b0c1e3498
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions
osu.Game/Screens/Edit/Timing

View File

@ -51,7 +51,8 @@ namespace osu.Game.Screens.Edit.Timing
{ {
textBox = new LabelledTextBox textBox = new LabelledTextBox
{ {
Label = "Time" Label = "Time",
SelectAllOnFocus = true,
}, },
button = new RoundedButton button = new RoundedButton
{ {

View File

@ -79,6 +79,7 @@ namespace osu.Game.Screens.Edit.Timing
public BPMTextBox() public BPMTextBox()
{ {
Label = "BPM"; Label = "BPM";
SelectAllOnFocus = true;
OnCommit += (_, isNew) => OnCommit += (_, isNew) =>
{ {