1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Change memory call stack tree icons.

This commit is contained in:
Bartosz Taudul
2021-11-13 20:42:52 +01:00
parent 667112c71f
commit 98edee9b07
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -17328,7 +17328,7 @@ void View::DrawMemory()
ImGui::PushID( m_memInfo.pool );
ImGui::Separator();
if( ImGui::TreeNode( ICON_FA_ALIGN_JUSTIFY " Bottom-up call stack tree" ) )
if( ImGui::TreeNode( ICON_FA_TREE " Bottom-up call stack tree" ) )
{
ImGui::SameLine();
DrawHelpMarker( "Press ctrl key to display allocation info tooltip. Right click on function name to display allocations list." );
@@ -17358,7 +17358,7 @@ void View::DrawMemory()
}
ImGui::Separator();
if( ImGui::TreeNode( ICON_FA_ALIGN_JUSTIFY " Top-down call stack tree" ) )
if( ImGui::TreeNode( ICON_FA_TREE " Top-down call stack tree" ) )
{
ImGui::SameLine();
DrawHelpMarker( "Press ctrl key to display allocation info tooltip. Right click on function name to display allocations list." );