mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 09:23:06 +08:00
Do not touch "currently editing" line
This commit is contained in:
parent
0ec608ec5d
commit
133b9b79d7
@ -14,11 +14,6 @@ namespace osu.Game.Localisation
|
||||
/// </summary>
|
||||
public static LocalisableString SkinEditor => new TranslatableString(getKey(@"skin_editor"), @"Skin editor");
|
||||
|
||||
/// <summary>
|
||||
/// "Currently editing"
|
||||
/// </summary>
|
||||
public static LocalisableString CurrentlyEditing => new TranslatableString(getKey(@"currently_editing"), @"Currently editing");
|
||||
|
||||
/// <summary>
|
||||
/// "Components"
|
||||
/// </summary>
|
||||
|
@ -254,13 +254,13 @@ namespace osu.Game.Skinning.Editor
|
||||
|
||||
headerText.AddParagraph(SkinEditorStrings.SkinEditor, cp => cp.Font = OsuFont.Default.With(size: 16));
|
||||
headerText.NewParagraph();
|
||||
headerText.AddText(SkinEditorStrings.CurrentlyEditing, cp =>
|
||||
headerText.AddText("Currently editing ", cp =>
|
||||
{
|
||||
cp.Font = OsuFont.Default.With(size: 12);
|
||||
cp.Colour = colours.Yellow;
|
||||
});
|
||||
|
||||
headerText.AddText($" {currentSkin.Value.SkinInfo}", cp =>
|
||||
headerText.AddText($"{currentSkin.Value.SkinInfo}", cp =>
|
||||
{
|
||||
cp.Font = OsuFont.Default.With(size: 12, weight: FontWeight.Bold);
|
||||
cp.Colour = colours.Yellow;
|
||||
|
Loading…
Reference in New Issue
Block a user