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
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

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