1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 21:00:52 +08:00

Merge pull request #8030 from EVAST9919/comments-replies-button-fix

Fix incorrect RepliesButton presentation in comments
This commit is contained in:
Dan Balasescu
2020-02-27 21:29:52 +09:00
committed by GitHub
Unverified
@@ -384,7 +384,7 @@ namespace osu.Game.Overlays.Comments
protected override void OnExpandedChanged(ValueChangedEvent<bool> expanded)
{
text.Text = $@"{(expanded.NewValue ? "[+]" : "[-]")} replies ({count})";
text.Text = $@"{(expanded.NewValue ? "[-]" : "[+]")} replies ({count})";
}
}