1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-09 20:54:47 +08:00

Inverse check.

This commit is contained in:
Nitrous
2024-01-09 15:19:54 +08:00
Unverified
parent 99c7685495
commit bdecac6d79
@@ -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)
{