From 7e1fc47b76d0fc6252549f0c65d51555b7d400ac Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 16 Aug 2017 17:43:01 +0900 Subject: [PATCH] Fix forgotten rename --- osu.Desktop.Tests/Visual/TestCaseKeyConfiguration.cs | 6 +++--- osu.Game/Overlays/KeyBindingOverlay.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/osu.Desktop.Tests/Visual/TestCaseKeyConfiguration.cs b/osu.Desktop.Tests/Visual/TestCaseKeyConfiguration.cs index 41e0c25507..cab285c72e 100644 --- a/osu.Desktop.Tests/Visual/TestCaseKeyConfiguration.cs +++ b/osu.Desktop.Tests/Visual/TestCaseKeyConfiguration.cs @@ -7,19 +7,19 @@ namespace osu.Desktop.Tests.Visual { public class TestCaseKeyConfiguration : OsuTestCase { - private readonly KeyConfigurationOverlay configuration; + private readonly KeyBindingOverlay overlay; public override string Description => @"Key configuration"; public TestCaseKeyConfiguration() { - Child = configuration = new KeyConfigurationOverlay(); + Child = overlay = new KeyBindingOverlay(); } protected override void LoadComplete() { base.LoadComplete(); - configuration.Show(); + overlay.Show(); } } } diff --git a/osu.Game/Overlays/KeyBindingOverlay.cs b/osu.Game/Overlays/KeyBindingOverlay.cs index ba45b3c812..7d6ef7ffa6 100644 --- a/osu.Game/Overlays/KeyBindingOverlay.cs +++ b/osu.Game/Overlays/KeyBindingOverlay.cs @@ -10,7 +10,7 @@ using osu.Game.Rulesets; namespace osu.Game.Overlays { - public class KeyConfigurationOverlay : SettingsOverlay + public class KeyBindingOverlay : SettingsOverlay { protected override Drawable CreateHeader() => new SettingsHeader("key configuration", "Customise your keys!"); @@ -23,7 +23,7 @@ namespace osu.Game.Overlays AddSection(new RulesetBindingsSection(ruleset)); } - public KeyConfigurationOverlay() + public KeyBindingOverlay() : base(false) { }