From 7a036b56b19021e3c737c5946a70bc161592ca61 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 18 Aug 2019 14:30:01 +0200 Subject: [PATCH] Add icon to CPU data button. --- server/TracyView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 4d879ce8..b8739735 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -9922,7 +9922,11 @@ void View::DrawInfo() if( !ctd.empty() ) { if( ficnt != 0 ) ImGui::SameLine(); +#ifdef TRACY_EXTENDED_FONT + if( ImGui::Button( ICON_FA_MICROCHIP " CPU data" ) ) +#else if( ImGui::Button( "CPU data" ) ) +#endif { m_showCpuDataWindow = true; }