1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-23 10:47:21 +08:00

Fix incorrect character on RepliesButton

This commit is contained in:
Andrei Zavatski 2020-02-26 18:55:43 +03:00
parent 1166d3d696
commit 638d060145

View File

@ -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})";
}
}