1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:07:25 +08:00

change quote block margin padding to use vertical and horizontal

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-05-06 05:36:46 +07:00
parent cfd28c51bb
commit 550e6c0fbb
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -36,10 +36,8 @@ namespace osu.Game.Graphics.Containers.Markdown
var textFlow = base.CreateTextFlow(); var textFlow = base.CreateTextFlow();
textFlow.Margin = new MarginPadding textFlow.Margin = new MarginPadding
{ {
Top = 10, Vertical = 10,
Bottom = 10, Horizontal = 20,
Left = 20,
Right = 20,
}; };
return textFlow; return textFlow;
} }