add back schedule is CurrentPath setter

This commit is contained in:
Gagah Pangeran Rosfatiputra
2021-05-31 10:49:16 +07:00
parent 3c7f1ae996
commit 113f90e92e

View File

@ -15,7 +15,7 @@ namespace osu.Game.Overlays.Wiki.Markdown
{
public string CurrentPath
{
set => DocumentUrl = $"{DocumentUrl}wiki/{value}";
set => Schedule(() => DocumentUrl = $"{DocumentUrl}wiki/{value}");
}
protected override void AddMarkdownComponent(IMarkdownObject markdownObject, FillFlowContainer container, int level)