1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 09:02:58 +08:00

Rename Settings to have a more localised name

This commit is contained in:
Dean Herbert 2021-05-12 16:38:04 +09:00
parent 4aeaec6ecc
commit 17e3764576
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ using osu.Game.Overlays;
namespace osu.Game.Screens.Edit
{
public abstract class Settings : CompositeDrawable
public abstract class RoundedContentEditorScreenSettings : CompositeDrawable
{
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colours)

View File

@ -6,7 +6,7 @@ using osu.Framework.Graphics;
namespace osu.Game.Screens.Edit.Timing
{
public class ControlPointSettings : Settings
public class ControlPointSettings : RoundedContentEditorScreenSettings
{
protected override IReadOnlyList<Drawable> CreateSections() => new Drawable[]
{

View File

@ -6,7 +6,7 @@ using osu.Framework.Graphics;
namespace osu.Game.Screens.Edit.Verify
{
public class IssueSettings : Settings
public class IssueSettings : RoundedContentEditorScreenSettings
{
private readonly IssueList issueList;