1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00

Add comment about last button invocation

This commit is contained in:
Dean Herbert 2018-07-02 17:48:16 +09:00
parent e99c05c85e
commit 6c848f135c

View File

@ -241,7 +241,10 @@ namespace osu.Game.Overlays.Dialog
protected override void PopOut()
{
if (!actionInvoked) buttonsContainer.Last().TriggerOnClick();
if (!actionInvoked)
// In the case a user did not choose an action before a hide was triggered, press the last button.
// This is presumed to always be a sane default "cancel" action.
buttonsContainer.Last().TriggerOnClick();
base.PopOut();
content.FadeOut(EXIT_DURATION, Easing.InSine);