mirror of
https://github.com/wolfpld/tracy.git
synced 2026-09-13 05:48:12 +00:00
Use ImGui keycodes.
This commit is contained in:
@@ -1369,7 +1369,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
|
||||
m_childCalls = false;
|
||||
m_childCallList = false;
|
||||
}
|
||||
else if( ImGui::IsKeyDown( 'Z' ) )
|
||||
else if( ImGui::IsKeyDown( ImGuiKey_Z ) )
|
||||
{
|
||||
m_childCalls = !m_childCalls;
|
||||
}
|
||||
@@ -1566,7 +1566,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
|
||||
break;
|
||||
}
|
||||
|
||||
if( samplesReady && ImGui::IsKeyDown( 'Z' ) ) m_childCalls = !m_childCalls;
|
||||
if( samplesReady && ImGui::IsKeyDown( ImGuiKey_Z ) ) m_childCalls = !m_childCalls;
|
||||
|
||||
if( jumpOut != 0 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user