Fix incorrect RepliesButton presentation

This commit is contained in:
Andrei Zavatski 2020-02-27 14:16:35 +03:00
parent 7c0e823b95
commit 32dc4501c1
1 changed files with 1 additions and 1 deletions

View File

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