From 194486e77e11474bfaabc07b7fec0447bdff531d Mon Sep 17 00:00:00 2001 From: andy840119 Date: Thu, 15 Aug 2024 23:55:19 +0800 Subject: [PATCH] Adjust the padding size. --- .../Edit/Beatmaps/Lyrics/Content/Compose/LyricEditor.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/osu.Game.Rulesets.Karaoke/Screens/Edit/Beatmaps/Lyrics/Content/Compose/LyricEditor.cs b/osu.Game.Rulesets.Karaoke/Screens/Edit/Beatmaps/Lyrics/Content/Compose/LyricEditor.cs index f32df6bf3..bbaa6fd6b 100644 --- a/osu.Game.Rulesets.Karaoke/Screens/Edit/Beatmaps/Lyrics/Content/Compose/LyricEditor.cs +++ b/osu.Game.Rulesets.Karaoke/Screens/Edit/Beatmaps/Lyrics/Content/Compose/LyricEditor.cs @@ -28,7 +28,11 @@ public LyricEditor() InternalChild = skinProvidingContainer = new SkinProvidingContainer(skin = new LyricEditorSkin(null)) { - Margin = new MarginPadding { Left = 30 }, + Padding = new MarginPadding + { + Vertical = 64, + Horizontal = 120, + }, RelativeSizeAxes = Axes.Both, };