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 namespace osu.Game.Overlays.Options.Sections.Audio
{ {
public class OffsetAdjustmentOptions : OptionsSubsection public class OffsetOptions : OptionsSubsection
{ {
protected override string Header => "Offset Adjustment"; 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 AudioDevicesOptions { Alpha = RuntimeInfo.IsWindows ? 1 : 0 },
new VolumeOptions(), new VolumeOptions(),
new OffsetAdjustmentOptions(), new OffsetOptions(),
}; };
} }
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -210,18 +210,18 @@
<Compile Include="Overlays\Options\Sections\Graphics\MainMenuOptions.cs" /> <Compile Include="Overlays\Options\Sections\Graphics\MainMenuOptions.cs" />
<Compile Include="Overlays\Options\Sections\Graphics\SongSelectGraphicsOptions.cs" /> <Compile Include="Overlays\Options\Sections\Graphics\SongSelectGraphicsOptions.cs" />
<Compile Include="Overlays\Options\Sections\GameplaySection.cs" /> <Compile Include="Overlays\Options\Sections\GameplaySection.cs" />
<Compile Include="Overlays\Options\Sections\Gameplay\GeneralGameplayOptions.cs" /> <Compile Include="Overlays\Options\Sections\Gameplay\GeneralOptions.cs" />
<Compile Include="Overlays\Options\Sections\Gameplay\SongSelectGameplayOptions.cs" /> <Compile Include="Overlays\Options\Sections\Gameplay\SongSelectOptions.cs" />
<Compile Include="Overlays\Options\Sections\AudioSection.cs" /> <Compile Include="Overlays\Options\Sections\AudioSection.cs" />
<Compile Include="Overlays\Options\Sections\Audio\AudioDevicesOptions.cs" /> <Compile Include="Overlays\Options\Sections\Audio\AudioDevicesOptions.cs" />
<Compile Include="Overlays\Options\Sections\Audio\VolumeOptions.cs" /> <Compile Include="Overlays\Options\Sections\Audio\VolumeOptions.cs" />
<Compile Include="Overlays\Options\Sections\Audio\OffsetAdjustmentOptions.cs" /> <Compile Include="Overlays\Options\Sections\Audio\OffsetOptions.cs" />
<Compile Include="Overlays\Options\Sections\InputSection.cs" /> <Compile Include="Overlays\Options\Sections\InputSection.cs" />
<Compile Include="Overlays\Options\Sections\Input\MouseOptions.cs" /> <Compile Include="Overlays\Options\Sections\Input\MouseOptions.cs" />
<Compile Include="Overlays\Options\Sections\Input\KeyboardOptions.cs" /> <Compile Include="Overlays\Options\Sections\Input\KeyboardOptions.cs" />
<Compile Include="Overlays\Options\Sections\Input\OtherInputOptions.cs" /> <Compile Include="Overlays\Options\Sections\Input\OtherInputOptions.cs" />
<Compile Include="Overlays\Options\Sections\OnlineSection.cs" /> <Compile Include="Overlays\Options\Sections\OnlineSection.cs" />
<Compile Include="Overlays\Options\Sections\Online\OnlineIntegrationOptions.cs" /> <Compile Include="Overlays\Options\Sections\Online\IntegrationOptions.cs" />
<Compile Include="Overlays\Options\Sections\Online\InGameChatOptions.cs" /> <Compile Include="Overlays\Options\Sections\Online\InGameChatOptions.cs" />
<Compile Include="Overlays\Options\Sections\EditorSection.cs" /> <Compile Include="Overlays\Options\Sections\EditorSection.cs" />
<Compile Include="Overlays\Options\Sections\SkinSection.cs" /> <Compile Include="Overlays\Options\Sections\SkinSection.cs" />