Restore wrapped calls

This commit is contained in:
Haselnussbomber 2025-08-04 21:09:54 +02:00
parent c8a7c712c1
commit c9e7ab4310
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1
2 changed files with 4 additions and 4 deletions

View file

@ -3424,7 +3424,7 @@ internal class PluginInstallerWindow : Window, IDisposable
{
if (!devPlugin.IsLoaded)
{
ImGuiHelpers.SafeTextColored(ImGuiColors.DalamudGrey, "You have to load this plugin to see validation issues."u8);
ImGuiHelpers.SafeTextColoredWrapped(ImGuiColors.DalamudGrey, "You have to load this plugin to see validation issues."u8);
}
else
{
@ -3435,7 +3435,7 @@ internal class PluginInstallerWindow : Window, IDisposable
ImGui.TextUnformatted(FontAwesomeIcon.Check.ToIconString());
ImGui.PopFont();
ImGui.SameLine();
ImGuiHelpers.SafeTextColored(ImGuiColors.HealerGreen, "No validation issues found in this plugin!"u8);
ImGuiHelpers.SafeTextColoredWrapped(ImGuiColors.HealerGreen, "No validation issues found in this plugin!"u8);
}
else
{

View file

@ -135,11 +135,11 @@ internal class SelfTestWindow : Window
if (this.testIndexToResult.Any(x => x.Value.Result == SelfTestStepResult.Fail))
{
ImGuiHelpers.SafeTextColored(ImGuiColors.DalamudRed, "One or more checks failed!"u8);
ImGuiHelpers.SafeTextColoredWrapped(ImGuiColors.DalamudRed, "One or more checks failed!"u8);
}
else
{
ImGuiHelpers.SafeTextColored(ImGuiColors.HealerGreen, "All checks passed!"u8);
ImGuiHelpers.SafeTextColoredWrapped(ImGuiColors.HealerGreen, "All checks passed!"u8);
}
return;