mirror of
https://github.com/ppy/osu.git
synced 2025-03-16 05:37:19 +08:00
Fix issues found by code quality ci
This commit is contained in:
parent
9b101ea9eb
commit
1181317c72
@ -129,6 +129,8 @@ namespace osu.Game.Tests.Visual.Menus
|
||||
public override bool? AllowTrackAdjustments => false;
|
||||
}
|
||||
|
||||
private class InheritScreen : OsuScreen { }
|
||||
private class InheritScreen : OsuScreen
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -62,7 +62,7 @@ namespace osu.Game.Screens
|
||||
/// Whether mod track adjustments are allowed to be applied.
|
||||
/// A <see langword="null"/> value means that the parent screen's value of this setting will be used.
|
||||
/// </summary>
|
||||
bool? AllowTrackAdjustments { set; get; }
|
||||
bool? AllowTrackAdjustments { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Invoked when the back button has been pressed to close any overlays before exiting this <see cref="IOsuScreen"/>.
|
||||
|
@ -81,13 +81,7 @@ namespace osu.Game.Screens
|
||||
|
||||
public virtual float BackgroundParallaxAmount => 1;
|
||||
|
||||
private bool? allowTrackAdjustments = null;
|
||||
|
||||
public virtual bool? AllowTrackAdjustments
|
||||
{
|
||||
set => allowTrackAdjustments = value;
|
||||
get => allowTrackAdjustments;
|
||||
}
|
||||
public virtual bool? AllowTrackAdjustments { get; set; }
|
||||
|
||||
public Bindable<WorkingBeatmap> Beatmap { get; private set; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user