Add icon to statistics menu.

This commit is contained in:
Bartosz Taudul 2018-08-18 00:09:23 +02:00
parent 816c91922e
commit 8db30a9016

View File

@ -5673,7 +5673,11 @@ void View::DrawStatistics()
return;
}
#ifdef TRACY_EXTENDED_FONT
ImGui::Checkbox( ICON_FA_CLOCK " Show self times", &m_statSelf );
#else
ImGui::Checkbox( "Show self times", &m_statSelf );
#endif
auto& slz = m_worker.GetSourceLocationZones();
Vector<decltype(slz.begin())> srcloc;