diff --git a/Dalamud/Interface/Utility/ImGuiHelpers.cs b/Dalamud/Interface/Utility/ImGuiHelpers.cs index cc144d09a..35b27c0a6 100644 --- a/Dalamud/Interface/Utility/ImGuiHelpers.cs +++ b/Dalamud/Interface/Utility/ImGuiHelpers.cs @@ -246,16 +246,7 @@ public static partial class ImGuiHelpers /// /// The color of the text. /// The text to write. - public static void SafeTextColored(Vector4 color, string text) - { - using (ImRaii.PushColor(ImGuiCol.Text, color)) - { - ImGui.TextUnformatted(text); - } - } - - /// - public static void SafeTextColored(Vector4 color, ReadOnlySpan text) + public static void SafeTextColored(Vector4 color, ImU8String text) { using (ImRaii.PushColor(ImGuiCol.Text, color)) {