Add memory icon to memory usage plot name.

This commit is contained in:
Bartosz Taudul 2018-08-18 00:24:23 +02:00
parent 07952f0a1f
commit e8da52324d

View File

@ -6816,7 +6816,11 @@ const char* View::GetPlotName( const PlotData* plot ) const
case PlotType::User:
return m_worker.GetString( plot->name );
case PlotType::Memory:
#ifdef TRACY_EXTENDED_FONT
return ICON_FA_MEMORY " Memory usage";
#else
return "Memory usage";
#endif
default:
assert( false );
return nullptr;