mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
General tidy-ups.
This commit is contained in:
@ -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(),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user