mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-14 04:01:48 +00:00
Use tables for trace parameters.
This commit is contained in:
parent
48a3356f43
commit
a7cdffa736
@ -1541,17 +1541,17 @@ bool View::DrawConnection()
|
|||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
if( ImGui::TreeNode( "Trace parameters" ) )
|
if( ImGui::TreeNode( "Trace parameters" ) )
|
||||||
{
|
{
|
||||||
ImGui::Columns( 2 );
|
ImGui::BeginTable( "##traceparams", 2, ImGuiTableFlags_Borders );
|
||||||
ImGui::TextUnformatted( "Name" );
|
ImGui::TableSetupColumn( "Name" );
|
||||||
ImGui::NextColumn();
|
ImGui::TableSetupColumn( "Value", ImGuiTableColumnFlags_WidthAutoResize );
|
||||||
ImGui::TextUnformatted( "Value" );
|
ImGui::TableHeadersRow();
|
||||||
ImGui::NextColumn();
|
|
||||||
ImGui::Separator();
|
|
||||||
size_t idx = 0;
|
size_t idx = 0;
|
||||||
for( auto& p : params )
|
for( auto& p : params )
|
||||||
{
|
{
|
||||||
|
ImGui::TableNextRow();
|
||||||
|
ImGui::TableNextColumn();
|
||||||
ImGui::TextUnformatted( m_worker.GetString( p.name ) );
|
ImGui::TextUnformatted( m_worker.GetString( p.name ) );
|
||||||
ImGui::NextColumn();
|
ImGui::TableNextColumn();
|
||||||
ImGui::PushID( idx );
|
ImGui::PushID( idx );
|
||||||
if( p.isBool )
|
if( p.isBool )
|
||||||
{
|
{
|
||||||
@ -1570,10 +1570,9 @@ bool View::DrawConnection()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
ImGui::PopID();
|
ImGui::PopID();
|
||||||
ImGui::NextColumn();
|
|
||||||
idx++;
|
idx++;
|
||||||
}
|
}
|
||||||
ImGui::EndColumns();
|
ImGui::EndTable();
|
||||||
ImGui::TreePop();
|
ImGui::TreePop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user