mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-23 06:44:35 +00:00
Display notification icon when context is limited.
This commit is contained in:
parent
cc425c4a2d
commit
25316ddada
@ -1036,6 +1036,17 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
|
|||||||
auto inlineList = worker.GetInlineSymbolList( m_baseAddr, m_codeLen );
|
auto inlineList = worker.GetInlineSymbolList( m_baseAddr, m_codeLen );
|
||||||
if( inlineList )
|
if( inlineList )
|
||||||
{
|
{
|
||||||
|
if( m_calcInlineStats )
|
||||||
|
{
|
||||||
|
ImGui::SameLine();
|
||||||
|
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
|
||||||
|
if( ImGui::IsItemHovered() )
|
||||||
|
{
|
||||||
|
ImGui::BeginTooltip();
|
||||||
|
ImGui::TextUnformatted( "Context is limited to an inline function" );
|
||||||
|
ImGui::EndTooltip();
|
||||||
|
}
|
||||||
|
}
|
||||||
SmallCheckbox( ICON_FA_SITEMAP " Function:", &m_calcInlineStats );
|
SmallCheckbox( ICON_FA_SITEMAP " Function:", &m_calcInlineStats );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::SetNextItemWidth( -1 );
|
ImGui::SetNextItemWidth( -1 );
|
||||||
|
Loading…
Reference in New Issue
Block a user