1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 21:07:33 +08:00

Fix Toolbar's mode changer not working correctly.

This commit is contained in:
Dean Herbert 2017-03-02 22:01:24 +09:00
parent d74a601180
commit ef8a35f5cc
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

View File

@ -55,7 +55,10 @@ namespace osu.Game.Overlays.Toolbar
},
modeSelector = new ToolbarModeSelector
{
OnPlayModeChange = OnPlayModeChange
OnPlayModeChange = (PlayMode mode) =>
{
OnPlayModeChange?.Invoke(mode);
}
}
}
},