mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-27 00:04:35 +00:00
Ditto for call stack window.
This commit is contained in:
parent
269c3d4530
commit
c4b472b6e0
@ -8056,7 +8056,7 @@ void View::DrawCallstackWindow()
|
|||||||
{
|
{
|
||||||
bool show = true;
|
bool show = true;
|
||||||
ImGui::SetNextWindowSize( ImVec2( 1200, 500 ), ImGuiCond_FirstUseEver );
|
ImGui::SetNextWindowSize( ImVec2( 1200, 500 ), ImGuiCond_FirstUseEver );
|
||||||
ImGui::Begin( "Call stack", &show );
|
ImGui::Begin( "Call stack", &show, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse );
|
||||||
|
|
||||||
#ifdef TRACY_EXTENDED_FONT
|
#ifdef TRACY_EXTENDED_FONT
|
||||||
ImGui::Checkbox( ICON_FA_AT " Show frame addresses", &m_showCallstackFrameAddress );
|
ImGui::Checkbox( ICON_FA_AT " Show frame addresses", &m_showCallstackFrameAddress );
|
||||||
@ -8066,6 +8066,8 @@ void View::DrawCallstackWindow()
|
|||||||
|
|
||||||
auto& cs = m_worker.GetCallstack( m_callstackInfoWindow );
|
auto& cs = m_worker.GetCallstack( m_callstackInfoWindow );
|
||||||
|
|
||||||
|
ImGui::Separator();
|
||||||
|
ImGui::BeginChild( "##callstack" );
|
||||||
const auto w = ImGui::GetWindowWidth();
|
const auto w = ImGui::GetWindowWidth();
|
||||||
static bool widthSet = false;
|
static bool widthSet = false;
|
||||||
ImGui::Columns( 3 );
|
ImGui::Columns( 3 );
|
||||||
@ -8213,6 +8215,7 @@ void View::DrawCallstackWindow()
|
|||||||
}
|
}
|
||||||
|
|
||||||
ImGui::EndColumns();
|
ImGui::EndColumns();
|
||||||
|
ImGui::EndChild();
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
|
|
||||||
if( !show )
|
if( !show )
|
||||||
|
Loading…
Reference in New Issue
Block a user