1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Keep wait stacks header on top.

This commit is contained in:
Bartosz Taudul 2021-11-14 02:17:02 +01:00
parent 2040ef945f
commit 19f87502d3
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -16498,6 +16498,7 @@ void View::DrawWaitStacks()
if( threadsChanged ) m_waitStack = 0;
ImGui::Separator();
ImGui::BeginChild( "##waitstacks" );
if( stacks.empty() )
{
ImGui::TextUnformatted( "No wait stacks to display." );
@ -16582,6 +16583,7 @@ void View::DrawWaitStacks()
}
}
#endif
ImGui::EndChild();
ImGui::End();
}