1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 23:52:57 +08:00

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

View File

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

View File

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