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

Inverse check.

This commit is contained in:
Nitrous 2024-01-09 15:19:54 +08:00
parent 99c7685495
commit bdecac6d79
No known key found for this signature in database
GPG Key ID: A5D82BAEC7C1D1F5

View File

@ -136,7 +136,7 @@ namespace osu.Game.Screens.Play.PlayerSettings
},
};
isPaused.BindValueChanged(e => play.Icon = e.NewValue ? FontAwesome.Regular.PauseCircle : FontAwesome.Regular.PlayCircle, true);
isPaused.BindValueChanged(e => play.Icon = !e.NewValue ? FontAwesome.Regular.PauseCircle : FontAwesome.Regular.PlayCircle, true);
void seek(int direction, double amount)
{