1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 15:32:59 +08:00

Fix code inspection failure

This commit is contained in:
Daniel Cios 2024-09-19 19:24:05 +02:00
parent 94c2f522ff
commit b86f246095
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ namespace osu.Game.Tests.Visual.Settings
{
Children = new Drawable[]
{
new PopoverContainer()
new PopoverContainer
{
RelativeSizeAxes = Axes.Both,
Child = new FillFlowContainer
@ -73,7 +73,7 @@ namespace osu.Game.Tests.Visual.Settings
public Bindable<int?> IntTextBoxBindable { get; } = new Bindable<int?>();
[SettingSource("Sample colour", "Change the colour", SettingControlType = typeof(SettingsColour))]
public BindableColour4 ColourBindable { get; } = new BindableColour4()
public BindableColour4 ColourBindable { get; } = new BindableColour4
{
Default = Colour4.White,
Value = Colour4.Red

View File

@ -3,7 +3,6 @@
#nullable disable
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Graphics;

View File

@ -1,5 +1,6 @@
// 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.
using osu.Framework.Bindables;
using osu.Framework.Extensions;
using osu.Framework.Graphics;