Use tables for trace parameters.

This commit is contained in:
Bartosz Taudul 2020-12-05 14:13:35 +01:00
parent 48a3356f43
commit a7cdffa736

View File

@ -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();
} }
} }