fix(ui): use TextUnformatted to prevent % issues

This commit is contained in:
Anna 2020-09-07 12:32:46 -04:00
parent 38f2d1b573
commit 5e8dc6aec8
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

@ -426,7 +426,7 @@ namespace NoSoliciting {
if (last) { if (last) {
ImGui.PushTextWrapPos(); ImGui.PushTextWrapPos();
} }
ImGui.Text(arg); ImGui.TextUnformatted(arg);
if (last) { if (last) {
ImGui.PopTextWrapPos(); ImGui.PopTextWrapPos();
} }