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