public before private

This commit is contained in:
David Zhao 2019-07-11 14:14:00 +09:00
parent ac170a6957
commit 932243cfd4
1 changed files with 4 additions and 4 deletions

View File

@ -22,10 +22,6 @@ public class DimmableBackgroundContainer : UserDimContainer
/// </remarks>
public readonly Bindable<float> BlurAmount = new Bindable<float>();
private Bindable<double> userBlurLevel { get; set; }
private Background background;
public Background Background
{
get => background;
@ -36,6 +32,10 @@ public Background Background
}
}
private Bindable<double> userBlurLevel { get; set; }
private Background background;
public override void Add(Drawable drawable)
{
if (drawable is Background)