mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Fix forgotten rename
This commit is contained in:
@ -7,19 +7,19 @@ namespace osu.Desktop.Tests.Visual
|
|||||||
{
|
{
|
||||||
public class TestCaseKeyConfiguration : OsuTestCase
|
public class TestCaseKeyConfiguration : OsuTestCase
|
||||||
{
|
{
|
||||||
private readonly KeyConfigurationOverlay configuration;
|
private readonly KeyBindingOverlay overlay;
|
||||||
|
|
||||||
public override string Description => @"Key configuration";
|
public override string Description => @"Key configuration";
|
||||||
|
|
||||||
public TestCaseKeyConfiguration()
|
public TestCaseKeyConfiguration()
|
||||||
{
|
{
|
||||||
Child = configuration = new KeyConfigurationOverlay();
|
Child = overlay = new KeyBindingOverlay();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void LoadComplete()
|
protected override void LoadComplete()
|
||||||
{
|
{
|
||||||
base.LoadComplete();
|
base.LoadComplete();
|
||||||
configuration.Show();
|
overlay.Show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ using osu.Game.Rulesets;
|
|||||||
|
|
||||||
namespace osu.Game.Overlays
|
namespace osu.Game.Overlays
|
||||||
{
|
{
|
||||||
public class KeyConfigurationOverlay : SettingsOverlay
|
public class KeyBindingOverlay : SettingsOverlay
|
||||||
{
|
{
|
||||||
protected override Drawable CreateHeader() => new SettingsHeader("key configuration", "Customise your keys!");
|
protected override Drawable CreateHeader() => new SettingsHeader("key configuration", "Customise your keys!");
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ namespace osu.Game.Overlays
|
|||||||
AddSection(new RulesetBindingsSection(ruleset));
|
AddSection(new RulesetBindingsSection(ruleset));
|
||||||
}
|
}
|
||||||
|
|
||||||
public KeyConfigurationOverlay()
|
public KeyBindingOverlay()
|
||||||
: base(false)
|
: base(false)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user