1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 20:30:27 +08:00

General tidy-ups.

This commit is contained in:
Dean Herbert
2017-01-31 19:23:52 +09:00
Unverified
parent a723e6ee9c
commit 0d529cb636
9 changed files with 14 additions and 14 deletions
@@ -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";
@@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Options.Sections
{
new AudioDevicesOptions { Alpha = RuntimeInfo.IsWindows ? 1 : 0 },
new VolumeOptions(),
new OffsetAdjustmentOptions(),
new OffsetOptions(),
};
}
}
@@ -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";
@@ -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";
@@ -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(),
};
}
}
@@ -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)
@@ -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";
@@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Options.Sections
new InGameChatOptions(),
new PrivacyOptions(),
new NotificationsOptions(),
new OnlineIntegrationOptions(),
new IntegrationOptions(),
};
}
}
+4 -4
View File
@@ -210,18 +210,18 @@
<Compile Include="Overlays\Options\Sections\Graphics\MainMenuOptions.cs" />
<Compile Include="Overlays\Options\Sections\Graphics\SongSelectGraphicsOptions.cs" />
<Compile Include="Overlays\Options\Sections\GameplaySection.cs" />
<Compile Include="Overlays\Options\Sections\Gameplay\GeneralGameplayOptions.cs" />
<Compile Include="Overlays\Options\Sections\Gameplay\SongSelectGameplayOptions.cs" />
<Compile Include="Overlays\Options\Sections\Gameplay\GeneralOptions.cs" />
<Compile Include="Overlays\Options\Sections\Gameplay\SongSelectOptions.cs" />
<Compile Include="Overlays\Options\Sections\AudioSection.cs" />
<Compile Include="Overlays\Options\Sections\Audio\AudioDevicesOptions.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\Input\MouseOptions.cs" />
<Compile Include="Overlays\Options\Sections\Input\KeyboardOptions.cs" />
<Compile Include="Overlays\Options\Sections\Input\OtherInputOptions.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\EditorSection.cs" />
<Compile Include="Overlays\Options\Sections\SkinSection.cs" />