Add source preview to call stack window.

This commit is contained in:
Bartosz Taudul 2021-03-27 13:42:42 +01:00
parent e2be45c0ba
commit 895a63b41a
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -13449,6 +13449,21 @@ void View::DrawCallstackWindow()
assert( false );
break;
}
if( ImGui::IsItemHovered() )
{
if( m_showCallstackFrameAddress == 3 )
{
const auto sym = m_worker.GetSymbolData( frame.symAddr );
if( sym )
{
const auto symtxt = m_worker.GetString( sym->file );
DrawSourceTooltip( symtxt, sym->line );
}
}
else
{
DrawSourceTooltip( txt, frame.line );
}
if( ImGui::IsItemClicked( 1 ) )
{
if( m_showCallstackFrameAddress == 3 )
@ -13475,6 +13490,7 @@ void View::DrawCallstackWindow()
}
}
}
}
if( indentVal != 0.f )
{
ImGui::Unindent( indentVal );