1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 02:02:53 +08:00

Fix code style

This commit is contained in:
Jamie Taylor 2024-07-04 15:01:37 +09:00
parent 681398059e
commit 753463fadb
No known key found for this signature in database
GPG Key ID: 2ACFA8B6370B8C8C

View File

@ -10,6 +10,7 @@ using osu.Game.Overlays.Dialog;
using osu.Game.Graphics.Containers;
using osu.Game.Input.Bindings;
using System.Linq;
using JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framework.Input.Events;
@ -30,7 +31,8 @@ namespace osu.Game.Overlays
public override bool IsPresent => Scheduler.HasPendingTasks
|| dialogContainer.Children.Count > 0;
private IDisposable? audioDucker;
[CanBeNull]
private IDisposable audioDucker;
public DialogOverlay()
{