remove schedule in set current path

This commit is contained in:
Gagah Pangeran Rosfatiputra
2021-05-26 14:59:36 +07:00
parent 02f0e2f212
commit eeb6647bc5

View File

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