1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 02:22:55 +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() private string createTextMarker()
{ {
if (isOrdered)
{
return $"{order}.";
}
switch (level) switch (level)
{ {
case 1: case 1: