ImGui::BeginTable() is conditional.

This commit is contained in:
Bartosz Taudul 2020-12-06 23:19:26 +01:00
parent 9a0e7abefa
commit a0bf2f5605

View File

@ -1541,7 +1541,8 @@ bool View::DrawConnection()
ImGui::Separator();
if( ImGui::TreeNode( "Trace parameters" ) )
{
ImGui::BeginTable( "##traceparams", 2, ImGuiTableFlags_Borders );
if( ImGui::BeginTable( "##traceparams", 2, ImGuiTableFlags_Borders ) )
{
ImGui::TableSetupColumn( "Name" );
ImGui::TableSetupColumn( "Value", ImGuiTableColumnFlags_WidthAutoResize );
ImGui::TableHeadersRow();
@ -1573,6 +1574,7 @@ bool View::DrawConnection()
idx++;
}
ImGui::EndTable();
}
ImGui::TreePop();
}
}
@ -7193,7 +7195,8 @@ void View::DrawZoneInfoWindow()
const int64_t adjust = m_ctxSwitchTimeRelativeToZone ? ev.Start() : 0;
const auto wrsz = eit - bit;
ImGui::BeginTable( "##waitregions", 6, ImGuiTableFlags_Resizable | ImGuiTableFlags_ScrollY | ImGuiTableFlags_Reorderable | ImGuiTableFlags_RowBg, ImVec2( 0, ImGui::GetTextLineHeightWithSpacing() * std::min<int64_t>( 1+wrsz, 15 ) ) );
if( ImGui::BeginTable( "##waitregions", 6, ImGuiTableFlags_Resizable | ImGuiTableFlags_ScrollY | ImGuiTableFlags_Reorderable | ImGuiTableFlags_RowBg, ImVec2( 0, ImGui::GetTextLineHeightWithSpacing() * std::min<int64_t>( 1+wrsz, 15 ) ) ) )
{
ImGui::TableSetupScrollFreeze( 0, 1 );
ImGui::TableSetupColumn( "Begin" );
ImGui::TableSetupColumn( "End" );
@ -7295,6 +7298,7 @@ void View::DrawZoneInfoWindow()
}
}
ImGui::EndTable();
}
ImGui::TreePop();
}
}
@ -7464,7 +7468,8 @@ void View::DrawZoneInfoWindow()
{
ImGui::SameLine();
SmallCheckbox( "Time relative to zone start", &m_messageTimeRelativeToZone );
ImGui::BeginTable( "##messages", 2, ImGuiTableFlags_ScrollY | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersInnerV, ImVec2( 0, ImGui::GetTextLineHeightWithSpacing() * std::min<int64_t>( msgend-msgit+1, 15 ) ) );
if( ImGui::BeginTable( "##messages", 2, ImGuiTableFlags_ScrollY | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersInnerV, ImVec2( 0, ImGui::GetTextLineHeightWithSpacing() * std::min<int64_t>( msgend-msgit+1, 15 ) ) ) )
{
ImGui::TableSetupScrollFreeze( 0, 1 );
ImGui::TableSetupColumn( "Time", ImGuiTableColumnFlags_WidthAutoResize );
ImGui::TableSetupColumn( "Message" );
@ -7490,6 +7495,7 @@ void View::DrawZoneInfoWindow()
}
while( ++msgit != msgend );
ImGui::EndTable();
}
ImGui::TreePop();
ImGui::Spacing();
}