1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-05 11:42:55 +08:00

Removed redundant qualifiers

This commit is contained in:
Andrey Zavadskiy 2017-02-27 17:37:38 +03:00
parent 3487dfe236
commit 9444ffd849
5 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,7 @@ namespace osu.Desktop.Overlays
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load(NotificationManager notification, OsuColour colours, TextureStore textures) private void load(NotificationManager notification, OsuColour colours, TextureStore textures)
{ {
this.notificationManager = notification; notificationManager = notification;
AutoSizeAxes = Axes.Both; AutoSizeAxes = Axes.Both;
Anchor = Anchor.BottomCentre; Anchor = Anchor.BottomCentre;

View File

@ -214,7 +214,7 @@ namespace osu.Game
} }
} }
return base.OnKeyDown(state, args); return OnKeyDown(state, args);
} }
public event Action<Screen> ModeChanged; public event Action<Screen> ModeChanged;

View File

@ -101,7 +101,7 @@ namespace osu.Game.Overlays.Options
{ {
Margin = new MarginPadding { Top = 5 }, Margin = new MarginPadding { Top = 5 },
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Items = this.Items, Items = Items,
} }
}; };
dropdown.ValueChanged += dropdown_ValueChanged; dropdown.ValueChanged += dropdown_ValueChanged;

View File

@ -21,7 +21,7 @@ namespace osu.Game.Overlays.Options
bindable = value; bindable = value;
if (bindable != null) if (bindable != null)
{ {
base.Text = bindable.Value; Text = bindable.Value;
bindable.ValueChanged += bindableValueChanged; bindable.ValueChanged += bindableValueChanged;
} }

View File

@ -14,7 +14,7 @@ namespace osu.Game.Overlays.Options.Sections
public GameplaySection() public GameplaySection()
{ {
base.Children = new Drawable[] Children = new Drawable[]
{ {
new GeneralOptions(), new GeneralOptions(),
new SongSelectOptions(), new SongSelectOptions(),