1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 06:00:25 +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
Unverified
+2 -2
View File
@@ -69,10 +69,10 @@ namespace osu.Game.Overlays.Dialog
{
if (actionInvoked) return;
Hide();
actionInvoked = true;
action?.Invoke();
Hide();
};
}
}