General tidy-ups.

This commit is contained in:
Dean Herbert
2017-01-31 19:23:52 +09:00
parent a723e6ee9c
commit 0d529cb636
9 changed files with 14 additions and 14 deletions

View File

@ -9,7 +9,7 @@ using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Options.Sections.Audio
{
public class OffsetAdjustmentOptions : OptionsSubsection
public class OffsetOptions : OptionsSubsection
{
protected override string Header => "Offset Adjustment";

View File

@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Options.Sections
{
new AudioDevicesOptions { Alpha = RuntimeInfo.IsWindows ? 1 : 0 },
new VolumeOptions(),
new OffsetAdjustmentOptions(),
new OffsetOptions(),
};
}
}

View File

@ -9,7 +9,7 @@ using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Options.Sections.Gameplay
{
public class GeneralGameplayOptions : OptionsSubsection
public class GeneralOptions : OptionsSubsection
{
protected override string Header => "General";

View File

@ -8,7 +8,7 @@ using osu.Game.Configuration;
namespace osu.Game.Overlays.Options.Sections.Gameplay
{
public class SongSelectGameplayOptions : OptionsSubsection
public class SongSelectOptions : OptionsSubsection
{
protected override string Header => "Song Select";

View File

@ -14,10 +14,10 @@ namespace osu.Game.Overlays.Options.Sections
public GameplaySection()
{
Children = new Drawable[]
base.Children = new Drawable[]
{
new GeneralGameplayOptions(),
new SongSelectGameplayOptions(),
new Gameplay.GeneralOptions(),
new SongSelectOptions(),
};
}
}

View File

@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Options.Sections.Online
{
private OptionTextBox chatIgnoreList;
private OptionTextBox chatHighlightWords;
protected override string Header => "In-game Chat";
protected override string Header => "Chat";
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)

View File

@ -8,7 +8,7 @@ using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Options.Sections.Online
{
public class OnlineIntegrationOptions : OptionsSubsection
public class IntegrationOptions : OptionsSubsection
{
protected override string Header => "Integration";

View File

@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Options.Sections
new InGameChatOptions(),
new PrivacyOptions(),
new NotificationsOptions(),
new OnlineIntegrationOptions(),
new IntegrationOptions(),
};
}
}