mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Fix dialog not closing after spamming OS window close
This commit is contained in:
@ -318,11 +318,16 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
|||||||
|
|
||||||
if (!exitConfirmed && dialogOverlay != null)
|
if (!exitConfirmed && dialogOverlay != null)
|
||||||
{
|
{
|
||||||
dialogOverlay.Push(new ConfirmDialog("Are you sure you want to leave this multiplayer match?", () =>
|
if (dialogOverlay.CurrentDialog is ConfirmDialog confirmDialog)
|
||||||
|
confirmDialog.PerformOkAction();
|
||||||
|
else
|
||||||
{
|
{
|
||||||
exitConfirmed = true;
|
dialogOverlay.Push(new ConfirmDialog("Are you sure you want to leave this multiplayer match?", () =>
|
||||||
this.Exit();
|
{
|
||||||
}));
|
exitConfirmed = true;
|
||||||
|
this.Exit();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user