1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 08:55:35 +08:00

use order number as marker for ordered list

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-04-30 10:48:12 +07:00
parent 2a3479f30d
commit c0d9f9f8c6
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -58,6 +58,11 @@ namespace osu.Game.Graphics.Containers.Markdown
private string createTextMarker()
{
if (isOrdered)
{
return $"{order}.";
}
switch (level)
{
case 1: