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
1 changed files with 4 additions and 1 deletions

View File

@ -241,7 +241,10 @@ protected override void PopIn()
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);