1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Fix mass visibility changing.

This commit is contained in:
Bartosz Taudul
2022-09-03 22:08:08 +02:00
parent d65bde99a2
commit 3ee928a7d1
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -549,7 +549,7 @@ void View::DrawOptions()
{
for( const auto& p : m_worker.GetPlots() )
{
m_tc.Vis( p ).visible = true;
m_tc.GetItem( p ).SetVisible( true );
}
}
ImGui::SameLine();
@@ -557,7 +557,7 @@ void View::DrawOptions()
{
for( const auto& p : m_worker.GetPlots() )
{
m_tc.Vis( p ).visible = false;
m_tc.GetItem( p ).SetVisible( false );
}
}