muffin v7.4
This commit is contained in:
parent
8a7847ff37
commit
a4175abacd
54 changed files with 95984 additions and 123967 deletions
|
|
@ -57,10 +57,10 @@ internal sealed class QuestValidationComponent
|
|||
ImGui.SameLine();
|
||||
using (ImRaii.PushColor(ImGuiCol.Text, ImGuiColors.DalamudRed))
|
||||
{
|
||||
text = new ImU8String(7, 1);
|
||||
text.AppendFormatted(errorCount);
|
||||
text.AppendLiteral(" errors");
|
||||
ImGui.Text(text);
|
||||
ImU8String text2 = new ImU8String(7, 1);
|
||||
text2.AppendFormatted(errorCount);
|
||||
text2.AppendLiteral(" errors");
|
||||
ImGui.Text(text2);
|
||||
}
|
||||
}
|
||||
if (num > 0)
|
||||
|
|
@ -70,11 +70,11 @@ internal sealed class QuestValidationComponent
|
|||
ImGui.SameLine();
|
||||
using (ImRaii.PushColor(ImGuiCol.Text, ImGuiColors.DalamudOrange))
|
||||
{
|
||||
text = new ImU8String(12, 1);
|
||||
text.AppendLiteral(", ");
|
||||
text.AppendFormatted(num);
|
||||
text.AppendLiteral(" warnings)");
|
||||
ImGui.Text(text);
|
||||
ImU8String text3 = new ImU8String(12, 1);
|
||||
text3.AppendLiteral(", ");
|
||||
text3.AppendFormatted(num);
|
||||
text3.AppendLiteral(" warnings)");
|
||||
ImGui.Text(text3);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -83,10 +83,10 @@ internal sealed class QuestValidationComponent
|
|||
ImGui.SameLine();
|
||||
using (ImRaii.PushColor(ImGuiCol.Text, ImGuiColors.DalamudOrange))
|
||||
{
|
||||
text = new ImU8String(10, 1);
|
||||
text.AppendFormatted(num);
|
||||
text.AppendLiteral(" warnings)");
|
||||
ImGui.Text(text);
|
||||
ImU8String text4 = new ImU8String(10, 1);
|
||||
text4.AppendFormatted(num);
|
||||
text4.AppendLiteral(" warnings)");
|
||||
ImGui.Text(text4);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue