mirror of
https://github.com/ppy/osu.git
synced 2025-02-12 05:52:54 +08:00
Fix code inspection failure
This commit is contained in:
parent
94c2f522ff
commit
b86f246095
@ -20,7 +20,7 @@ namespace osu.Game.Tests.Visual.Settings
|
|||||||
{
|
{
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new PopoverContainer()
|
new PopoverContainer
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Child = new FillFlowContainer
|
Child = new FillFlowContainer
|
||||||
@ -73,7 +73,7 @@ namespace osu.Game.Tests.Visual.Settings
|
|||||||
public Bindable<int?> IntTextBoxBindable { get; } = new Bindable<int?>();
|
public Bindable<int?> IntTextBoxBindable { get; } = new Bindable<int?>();
|
||||||
|
|
||||||
[SettingSource("Sample colour", "Change the colour", SettingControlType = typeof(SettingsColour))]
|
[SettingSource("Sample colour", "Change the colour", SettingControlType = typeof(SettingsColour))]
|
||||||
public BindableColour4 ColourBindable { get; } = new BindableColour4()
|
public BindableColour4 ColourBindable { get; } = new BindableColour4
|
||||||
{
|
{
|
||||||
Default = Colour4.White,
|
Default = Colour4.White,
|
||||||
Value = Colour4.Red
|
Value = Colour4.Red
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Extensions;
|
using osu.Framework.Extensions;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
|
Loading…
Reference in New Issue
Block a user