mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
remove blank line and try to get test case working
This commit is contained in:
@ -18,11 +18,11 @@ namespace osu.Game.Tests.Visual
|
||||
{
|
||||
VolumeMeter meter;
|
||||
MuteButton mute;
|
||||
Add(meter = new VolumeMeter("MASTER", 125, Color4.Blue));
|
||||
Add(mute = new MuteButton
|
||||
LoadComponentAsync(meter = new VolumeMeter("MASTER", 125, Color4.Blue), Add);
|
||||
LoadComponentAsync(mute = new MuteButton
|
||||
{
|
||||
Margin = new MarginPadding { Top = 200 }
|
||||
});
|
||||
}, Add);
|
||||
|
||||
AddSliderStep("master volume", 0, 10, 0, i => meter.Bindable.Value = i * 0.1);
|
||||
AddToggleStep("mute", b => mute.Current.Value = b);
|
||||
|
Reference in New Issue
Block a user