Skip to content
Snippets Groups Projects
Verified Commit 5c2b3a55 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

Fix combo boxes of wobble project

parent 620089fc
No related tags found
1 merge request!104Draft: Resolve "GraphicsPipeline refactoring"
......@@ -796,9 +796,9 @@ int main(int argc, const char **argv) {
ImGui::Begin("Settings");
ImGui::BeginGroup();
ImGui::Combo("Mode", &(sim->mode), "Random\0Ordered", 2);
ImGui::Combo("Form", &(sim->form), "Sphere\0Cube", 2);
ImGui::Combo("Type", &(sim->type), "Hyperelastic\0Fluid", 2);
ImGui::Combo("Mode", &(sim->mode), "Random\0Ordered\0", 2);
ImGui::Combo("Form", &(sim->form), "Sphere\0Cube\0", 2);
ImGui::Combo("Type", &(sim->type), "Hyperelastic\0Fluid\0", 2);
ImGui::EndGroup();
ImGui::Spacing();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment