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

Merge pull request #2947 from peppy/fix-popup-dialog-regression

Fix selecting a button on a dialog causing both that button and exit to animate
This commit is contained in:
Dan Balasescu 2018-07-04 12:04:56 +09:00 committed by GitHub
commit b02603000e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,10 +69,10 @@ namespace osu.Game.Overlays.Dialog
{
if (actionInvoked) return;
Hide();
actionInvoked = true;
action?.Invoke();
Hide();
};
}
}