Skip to content

Commit

Permalink
Adjust the params name.
Browse files Browse the repository at this point in the history
  • Loading branch information
andy840119 committed Dec 24, 2022
1 parent 594673c commit e88233c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private void load()
x.RelativeSizeAxes = Axes.X;
x.AutoSizeAxes = Axes.Y;
x.Padding = new MarginPadding { Horizontal = horizontal_padding };
x.Description = CreateInvalidLyricDescriptionFormat();
x.Description = CreateInvalidDescriptionFormat();
})
};
});
Expand All @@ -80,7 +80,7 @@ private void load()

protected virtual DescriptionTextFlowContainer CreateDescriptionTextFlowContainer() => new();

protected abstract DescriptionFormat CreateInvalidLyricDescriptionFormat();
protected abstract DescriptionFormat CreateInvalidDescriptionFormat();

protected abstract ConfigButton CreateConfigButton();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public LanguageAutoGenerateSubsection()
{
}

protected override DescriptionFormat CreateInvalidLyricDescriptionFormat()
protected override DescriptionFormat CreateInvalidDescriptionFormat()
=> new()
{
Text = $"Seems some lyric has no texts, go to [{DescriptionFormat.LINK_KEY_ACTION}]({typing_mode}) to fill the text.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public NoteAutoGenerateSubsection()
{
}

protected override DescriptionFormat CreateInvalidLyricDescriptionFormat()
protected override DescriptionFormat CreateInvalidDescriptionFormat()
=> new()
{
Text = $"Seems some lyric contains invalid time-tag, go to [{DescriptionFormat.LINK_KEY_ACTION}]({create_time_tag_mode}) to fix those issue.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public ReferenceLyricAutoGenerateSubsection()
{
}

protected override DescriptionFormat CreateInvalidLyricDescriptionFormat()
protected override DescriptionFormat CreateInvalidDescriptionFormat()
=> new()
{
Text = "Seems every lyrics in the songs are unique. But don't worry, reference lyric can still link by hands."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ protected TextTagAutoGenerateSubsection(LyricAutoGenerateProperty autoGeneratePr
{
}

protected override DescriptionFormat CreateInvalidLyricDescriptionFormat()
protected override DescriptionFormat CreateInvalidDescriptionFormat()
=> new()
{
Text = $"Seems some lyric missing language, go to [{DescriptionFormat.LINK_KEY_ACTION}]({language_mode}) to fill the language.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public TimeTageAutoGenerateSubsection()
{
}

protected override DescriptionFormat CreateInvalidLyricDescriptionFormat()
protected override DescriptionFormat CreateInvalidDescriptionFormat()
=> new()
{
Text = $"Seems some lyric missing language, go to [{DescriptionFormat.LINK_KEY_ACTION}]({language_mode}) to fill the language.",
Expand Down

0 comments on commit e88233c

Please sign in to comment.