Skip to content

Commit

Permalink
Also apply to timing textboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Jul 11, 2024
1 parent ce93455 commit 7b0c1e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osu.Game/Screens/Edit/Timing/GroupSection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ private void load()
{
textBox = new LabelledTextBox
{
Label = "Time"
Label = "Time",
SelectAllOnFocus = true,
},
button = new RoundedButton
{
Expand Down
1 change: 1 addition & 0 deletions osu.Game/Screens/Edit/Timing/TimingSection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ private partial class BPMTextBox : LabelledTextBox
public BPMTextBox()
{
Label = "BPM";
SelectAllOnFocus = true;

OnCommit += (_, isNew) =>
{
Expand Down

0 comments on commit 7b0c1e3

Please sign in to comment.