From 5e8dc6aec8fbc2a4c5e9ffc5d6d463012177821e Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Mon, 7 Sep 2020 12:32:46 -0400 Subject: [PATCH] fix(ui): use TextUnformatted to prevent % issues --- NoSoliciting/PluginUI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NoSoliciting/PluginUI.cs b/NoSoliciting/PluginUI.cs index 01f0862..79dfbe0 100644 --- a/NoSoliciting/PluginUI.cs +++ b/NoSoliciting/PluginUI.cs @@ -426,7 +426,7 @@ namespace NoSoliciting { if (last) { ImGui.PushTextWrapPos(); } - ImGui.Text(arg); + ImGui.TextUnformatted(arg); if (last) { ImGui.PopTextWrapPos(); }