1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 01:39:54 +08:00

Fix incorrect character on RepliesButton

This commit is contained in:
Andrei Zavatski
2020-02-26 18:55:43 +03:00
Unverified
parent 1166d3d696
commit 638d060145
@@ -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})";
}
}