From 40fde4443e7ef5ae19d2e6b6150ab83cee7ad247 Mon Sep 17 00:00:00 2001
From: Tobias Frisch <tfrisch@uni-koblenz.de>
Date: Sat, 18 Jun 2022 23:29:00 +0200
Subject: [PATCH] Fix combo boxes of wobble project

Signed-off-by: Tobias Frisch <tfrisch@uni-koblenz.de>
---
 projects/wobble_bobble/src/main.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/projects/wobble_bobble/src/main.cpp b/projects/wobble_bobble/src/main.cpp
index d554687b..7c865fac 100644
--- a/projects/wobble_bobble/src/main.cpp
+++ b/projects/wobble_bobble/src/main.cpp
@@ -832,9 +832,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();
-- 
GitLab