mirror of https://github.com/ppy/osu
Fix incorrect RepliesButton presentation
This commit is contained in:
parent
7c0e823b95
commit
32dc4501c1
|
@ -384,7 +384,7 @@ public RepliesButton(int count)
|
|||
|
||||
protected override void OnExpandedChanged(ValueChangedEvent<bool> expanded)
|
||||
{
|
||||
text.Text = $@"{(expanded.NewValue ? "[+]" : "[-]")} replies ({count})";
|
||||
text.Text = $@"{(expanded.NewValue ? "[-]" : "[+]")} replies ({count})";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue