You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These elements are not constrained by the node boundaries
void draw() override
{
ImGui::Text("ID:%d",mId);
ImGui::Separator();
if (ImGui::BeginTable("table", 2, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg)) {
ImGui::TableSetupColumn("Key");
ImGui::TableSetupColumn("Value");
ImGui::TableHeadersRow();
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::TextWrapped("%s", "key1");
ImGui::TableSetColumnIndex(1);
ImGui::TextWrapped("%s", "value1");
ImGui::EndTable();
}
}
The text was updated successfully, but these errors were encountered:
These elements are not constrained by the node boundaries
void draw() override
{
ImGui::Text("ID:%d",mId);
ImGui::Separator();
if (ImGui::BeginTable("table", 2, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg)) {
ImGui::TableSetupColumn("Key");
ImGui::TableSetupColumn("Value");
ImGui::TableHeadersRow();
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::TextWrapped("%s", "key1");
ImGui::TableSetColumnIndex(1);
ImGui::TextWrapped("%s", "value1");
ImGui::EndTable();
}
}
The text was updated successfully, but these errors were encountered: