mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Change all instances of options to settings where applicable
This commit is contained in:
@ -6,18 +6,18 @@ using osu.Game.Overlays;
|
||||
|
||||
namespace osu.Desktop.VisualTests.Tests
|
||||
{
|
||||
internal class TestCaseOptions : TestCase
|
||||
internal class TestCaseSettings : TestCase
|
||||
{
|
||||
public override string Description => @"Tests the options overlay";
|
||||
public override string Description => @"Tests the settings overlay";
|
||||
|
||||
private OptionsOverlay options;
|
||||
private SettingsOverlay settings;
|
||||
|
||||
public override void Reset()
|
||||
{
|
||||
base.Reset();
|
||||
|
||||
Children = new[] { options = new OptionsOverlay() };
|
||||
options.ToggleVisibility();
|
||||
Children = new[] { settings = new SettingsOverlay() };
|
||||
settings.ToggleVisibility();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user