From cc831e819278a3f792879b384a02f246b9bd6ad7 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 4 Jun 2021 15:29:08 +0200 Subject: [PATCH] Description is not supposed to be formatted. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 87cb2c6f..9d69ee00 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -646,7 +646,7 @@ bool View::Draw() { if( ImGui::RadioButton( CompressionName[idx], (int)comp == idx ) ) comp = (FileWrite::Compression)idx; ImGui::SameLine(); - ImGui::TextDisabled( CompressionDesc[idx] ); + TextDisabledUnformatted( CompressionDesc[idx] ); idx++; } ImGui::Unindent();