muffin v7.4

This commit is contained in:
alydev 2025-12-18 00:49:57 +10:00
parent 8a7847ff37
commit a4175abacd
54 changed files with 95984 additions and 123967 deletions

View file

@ -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;
}
}