We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f6bc22 commit bebf208Copy full SHA for bebf208
1 file changed
profiler/src/profiler/TracyView_TraceInfo.cpp
@@ -41,6 +41,12 @@ void View::DrawInfo()
41
TextFocused( "File:", m_filename.c_str() );
42
if( m_userData.Valid() )
43
{
44
+ ImGui::SameLine();
45
+ auto sidecarPublic = m_userData.IsSidecarPublic();
46
+ if( SmallCheckbox( "Public sidecar", &sidecarPublic ) )
47
+ {
48
+ m_userData.SetSidecarPublic( sidecarPublic );
49
+ }
50
}
51
52
0 commit comments