1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 12:13:22 +08:00

Extend behaviour to sample edit popover

This commit is contained in:
Salman Ahmed 2024-07-10 15:08:36 +03:00
parent 94f51c92e0
commit ce93455aa8
2 changed files with 3 additions and 0 deletions

View File

@ -148,10 +148,12 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
bank = new LabelledTextBox bank = new LabelledTextBox
{ {
Label = "Bank Name", Label = "Bank Name",
SelectAllOnFocus = true,
}, },
additionBank = new LabelledTextBox additionBank = new LabelledTextBox
{ {
Label = "Addition Bank", Label = "Addition Bank",
SelectAllOnFocus = true,
}, },
volume = new IndeterminateSliderWithTextBoxInput<int>("Volume", new BindableInt(100) volume = new IndeterminateSliderWithTextBoxInput<int>("Volume", new BindableInt(100)
{ {

View File

@ -75,6 +75,7 @@ namespace osu.Game.Screens.Edit.Timing
textBox = new LabelledTextBox textBox = new LabelledTextBox
{ {
Label = labelText, Label = labelText,
SelectAllOnFocus = true,
}, },
slider = new SettingsSlider<T> slider = new SettingsSlider<T>
{ {